11399: ATM - Python

beaver.zip·2024년 12월 14일
0

[알고리즘] 백준

목록 보기
42/45

문제

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

풀이

N = int(input())
times = sorted(map(int, input().split()))

total = 0
for i in range(len(times)):
    total += sum(times[:i+1])

print(total)

실버 문제 치곤 많이 쉬운 것 같다.

profile
NLP 일짱이 되겠다.

0개의 댓글