728x90
반응형

VERSION 2.0

import sys
import heapq
N = int(sys.stdin.readline())
res = []
for i in range(N):
    num = int(sys.stdin.readline())

    heapq.heappush(res , ( num , num) ) #heaq.heappush(리스트 , (비교할값_1 , 비교할값_2 ) )

while res:
    print(heapq.heappop(res)[1])

#%%

==> 우선순위 힙으로 풀어보았다!!!

print(heapq.heappop(res))

힙,큐

 

VERSION 1.0

import sys

N = int(sys.stdin.readline())
B =[]
for i in range(N):
    N = int(sys.stdin.readline())
    B.append(N)

c = sorted(B)
for i in c:
    print(i)

그냥 sorted()함수 활용해서 해봤더니 되네?

 

728x90
반응형

+ Recent posts