https://www.acmicpc.net/problem/11399
n = int(input())
li = list(map(int, input().split()))
num = 0
s = 0
li.sort()
for i in li:
num += i
s += num
print(s)
n = int(input())
li = list(map(int, input().split()))
num = 0
s = 0
li.sort()
for i in range(n):
for j in range(i+1):
num += li[j]
print(num)
'코딩테스트 > 백준' 카테고리의 다른 글
백준 11650번 좌표 정렬하기 python 파이썬 (0) | 2022.10.07 |
---|---|
백준 1427번 소트인사이드 python 파이썬 (0) | 2022.10.07 |
백준 2751번 수 정렬하기 2 python 파이썬 (0) | 2022.10.06 |
백준 10817번 세 수 python 파이썬 (0) | 2022.10.06 |
백준 2750번 수 정렬하기 python 파이썬 (0) | 2022.10.06 |