시작이 반

[백준] 11399번 (python 파이썬) 본문

알고리즘/백준

[백준] 11399번 (python 파이썬)

G_Gi 2021. 2. 28. 22:10
SMALL

https://www.acmicpc.net/problem/11399

 

시간 순으로 오름차순으로 정렬을 한뒤 시간이 빨리 끝나는 것부터 처리해준다.

 

n = int(input())
time = list(map(int, input().split()))

time.sort()

result_list = list()
result = 0
for i in range(n):
    result += time[i]
    result_list.append(result)

print(sum(result_list))
LIST