https://www.acmicpc.net/problem/11399
N = int(input())
P = list(map(int,input().split()))
P.sort()
count = 0
for i in range(N):
for j in range(i + 1):
count += P[j]
print(count)
'Python > Baekjoon' 카테고리의 다른 글
백준 2178번 : 미로 탐색 (0) | 2022.11.28 |
---|---|
백준 2798번 : 블랙잭 (0) | 2022.11.21 |
백준 5585번 : 거스름돈 (0) | 2022.11.16 |
백준 6603번 : 로또 (0) | 2022.11.14 |
백준 1759번 : 암호 만들기 (0) | 2022.11.14 |