문제풀이
import sys
import heapq
input = sys.stdin.readline
num = int(input())
heap = []
for i in range(num):
inputN = int(input())
if inputN == 0 :
if len(heap)==0:
print(0)
else :
print(-1*heapq.heappop(heap))
else :
heapq.heappush(heap,-1*inputN)
'공부기록 > 자바스크립트 코딩테스트' 카테고리의 다른 글
[백준/Python] 2075번 N번째 큰수 (0) | 2022.07.05 |
---|---|
[백준/11286] 11286 절대값 힙 (0) | 2022.07.05 |
[백준/Python] 2696번 중앙값 구하기 (0) | 2022.07.04 |
[백준/Python] 21939 문제 추천 시스템 Version 1 (0) | 2022.07.04 |
[백준/JS] 4358 생태학 (0) | 2022.07.02 |