n = int(input())
n_list = list(map(int, input().split()))
n_list.sort()
total = 0
for i in range(1,len(n_list)+1):
total += sum(n_list[0:i])
print(total)
'백준' 카테고리의 다른 글
백준 18258번: 큐 2 (파이썬) (0) | 2023.07.30 |
---|---|
백준 17219번: 비밀번호 찾기 (파이썬) (0) | 2023.07.30 |
백준 10866번: 덱 (파이썬) (0) | 2023.07.30 |
백준 10826번: 스택 (파이썬) (0) | 2023.07.30 |
백준 10773번: 제로 (파이썬) (0) | 2023.07.30 |