import heapq
import sys
input = sys.stdin.readline
n = int(input())
heap = []
for _ in range(n):
x = int(input())
if x != 0:
heapq.heappush(heap,[-x,x])
else:
try:
print(heapq.heappop(heap)[1])
except:
print(0)
'문제풀이 > 백준(Boj) 문제풀이' 카테고리의 다른 글
[백준][자료구조/힙] 1655.가운데를 말해요 (파이썬/Python) (0) | 2022.01.10 |
---|---|
[백준][자료구조/힙] 1655.가운데를 말해요 (파이썬/Python) (0) | 2022.01.08 |
[백준][자료구조/힙] 1927.최소 힙 (파이썬/Python) (0) | 2022.01.06 |
[백준][DFS/DP] 2583. 영역 구하기 (파이썬/Python) (0) | 2022.01.05 |
[백준][구현] 1009.분산처리 (파이썬/Python) (0) | 2022.01.05 |