728x90
[ 문제 ]
https://www.acmicpc.net/problem/11399
[ 코드 ]
n = int(input())
p = list(map(int,input().split()))
p.sort()
total = 0
for i in p:
total += i*n
n -= 1
print(total)
[ 결과 ]
반응형
'알고리즘' 카테고리의 다른 글
[ 해시 ][ 파이썬 ] 프로그래머스 : 완주하지 못한 선수 (0) | 2022.02.26 |
---|---|
[ greedy ][ 파이썬 ] 백준 11047 번 : 동전 0 (1) | 2022.02.23 |
[ greedy ][ 파이썬 ] 백준 2839번 : 설탕배달 (0) | 2022.02.23 |
코딩테스트 대비 백준 사이트 이용법 (0) | 2022.02.23 |
graham scan으로 convex hull 그리기 (0) | 2021.06.16 |