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

[백준/파이썬] 28062번 준석이의 사탕 사기

by 현장 2024. 8. 11.

-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)