728x90
https://www.acmicpc.net/problem/20115
n = int(input())
inp = list(map(int, input().split()))
inp.sort(reverse=True)
result = inp[0]
for i in range(1,n):
result += (inp[i]/2)
if result == int(result):
print(int(result))
else:
print(result)
반응형
'전.py' 카테고리의 다른 글
백준 1408 24 (0) | 2020.12.09 |
---|---|
백준 20116 상자의 균형 (0) | 2020.12.03 |
백준 20114 미아 노트 (0) | 2020.12.03 |
백준 20113 긴급 회의 (0) | 2020.12.03 |
백준 20112 사토르 마방진 (0) | 2020.12.03 |