[Python] BOJ 1927번. 최소 힙 작성일 2020-05-29 | In Algorithm | 1927번. 최소 힙 문제 링크 https://www.acmicpc.net/problem/1927 풀이 코드 123456789101112131415161718# 1927번. 최소 힙 import heapq import sys input = sys.stdin.readline n = int(input()) h = [] for i in range(n): ii = int(input()) if ii != 0: heapq.heappush(h, ii) else: if not h: print(0) else: print(heapq.heappop(h)) 비고