728x90
반응형
단순 구현 문제이다. 제일 큰 숫자를 제외하고, 남은 숫자들의 합을 출력해주면 된다.
n = int(input())
li = sorted(list(map(int, input().split())))
print(sum(li[:-1]))
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 11772번 POT(python) (0) | 2021.03.08 |
---|---|
백준 알고리즘 11874번 ZAMKA(python) (0) | 2021.03.08 |
백준 알고리즘 11522번 Sum Kind of Problem(python) (0) | 2021.03.08 |
백준 알고리즘 2599번 수열(python) (0) | 2021.03.07 |
백준 알고리즘 6588번 골드바흐의 추측(python) (0) | 2021.03.07 |