import heapq
import sys
N = int(input())
heap = []
for _ in range(N):
num = int(sys.stdin.readline())
if num == 0:
if heap:
print(heapq.heappop(heap))
else:
print(0)
else:
heapq.heappush(heap, num)
'> 알고리즘 문제 풀이 > BOJ' 카테고리의 다른 글
[Python] 13300-방 배정 (0) | 2020.10.26 |
---|---|
[Python] 2609-최대공약수와 최소공배수 (0) | 2020.10.25 |
***16768-Mooyo Mooyo (python, 파이썬) (0) | 2020.10.19 |
**1012-유기농 배추 (python, 파이썬) (0) | 2020.10.18 |
**14620-꽃길 (python, 파이썬) (0) | 2020.10.17 |
댓글