목록1715 (1)
컴공생의 다이어리
[파이썬, Python] 백준 1715번 : 카드 정렬하기
백준 1715번 : 카드 정렬하기 (문제 바로가기) 내 코드 import heapq import sys input = sys.stdin.readline n = int(input()) card = [int(input()) for _ in range(n)] heapq.heapify(card) result = 0 while len(card) > 1: a, b = heapq.heappop(card), heapq.heappop(card) result += a + b heapq.heappush(card, a + b) print(result)
Development/Algorithm & Coding Test
2022. 5. 19. 00:01