728x90
๋ฐ์ํ
๐กsolutions )
๐ฌ sorted()๋ฅผ ์ด์ฉํด ์ค๋ฆ์ฐจ์ ์ ๋ฆฌํ ์ ๋ ฌ์ ๊ธฐ๋ณธ ๋ฌธ์
๐ซcode )
# 11399๋ฒ ATM ๋ฌธ์
n = int(input())
arr = sorted((map(int, input().split())))
res = 0
next = 0
for i in arr:
res += i + next
next += i
print(res)
# 2750๋ฒ ์ ์ ๋ ฌํ๊ธฐ ๋ฌธ์
import sys
input = sys.stdin.readline
arr = []
for i in range(int(input())):
n = int(input())
arr.append(n)
arr = sorted(arr)
for i in arr:
print(i)
๐ description )
๋ฌธ์ ์ถ์ฒ : www.acmicpc.net/problem/11399
๋ฌธ์ ์ถ์ฒ : www.acmicpc.net/problem/11399www.acmicpc.net/problem/2750
๋ฐ์ํ