-Code
n = int(input())
candy = list(map(int, input().split()))
res = 0
odd = []
for c in candy:
if c % 2 == 0:
res += c
else:
odd.append(c)
odd.sort(reverse=True)
if len(odd) % 2 == 0:
res += sum(odd)
else:
res += sum(odd[:-1])
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 17869번 Simple Collatz Sequence (0) | 2024.08.13 |
---|---|
[백준/파이썬] 11809번 YODA (0) | 2024.08.12 |
[백준/파이썬] 23276번 Locust Locus (0) | 2024.08.10 |
[백준/파이썬] 11434번 Ampelmännchen (0) | 2024.08.09 |
[백준/파이썬] 9253번 Negative People in Da House (0) | 2024.08.08 |