본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬]11908번 카드

by 현장 2021. 4. 24.

-코드

n = int(input())
c = list(map(int, input().split()))
r = 0
for i in range(n - 1):
    r += min(c)
    c.remove(min(c))
print(r)