컴공생의 다이어리
[파이썬, Python] 백준 2075번 : N번째 큰 수 본문
백준 2075번 : N번째 큰 수
내 코드
import sys, heapq
input = sys.stdin.readline
heap = []
for _ in range(int(input())):
arr = list(map(int, input().split()))
if not heap:
for a in arr:
heapq.heappush(heap, a)
else:
for a in arr:
if heap[0] < a:
heapq.heappush(heap, a)
heapq.heappop(heap)
print(heap[0])
728x90
'Development > Algorithm & Coding Test' 카테고리의 다른 글
[프로그래머스] 완주하지 못한 선수 - 파이썬(Python) (0) | 2022.05.04 |
---|---|
[프로그래머스] 카펫 - 파이썬(Python) (0) | 2022.05.03 |
[파이썬, Python] 백준 1012번 : 유기농 배추 (0) | 2022.05.01 |
[파이썬, Python] 백준 2014번 : 소수의 곱 (0) | 2022.04.30 |
[알고리즘] 계수 정렬(Counting Sort) (0) | 2022.04.28 |
Comments