最小ヒップ


作成日:2022年1月29日午後6:11

インプリメンテーションコード

# 최소힙
import sys
import heapq
sys.stdin = open("input.txt", "rt")

heap = []

while True:
    num = int(input())
    if num == -1:
        break
    elif num == 0:
        print(heapq.heappop(heap))
    else:
        heapq.heappush(heap, num)