728x90
반응형
단순 구현 문제이다.
for _ in range(int(input())):
li = list(map(int, input().split()))[1:]
odd = even = 0
for n in li:
if n%2 == 1:
odd += n
else:
even += n
if odd == even:
print("TIE")
elif odd > even:
print("ODD")
else:
print("EVEN")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 5523번 경기 결과(python) (0) | 2021.02.14 |
---|---|
백준 알고리즘 5361번 전투 드로이드 가격(python) (0) | 2021.02.14 |
백준 알고리즘 5220번 Error Detection(python) (0) | 2021.02.14 |
백준 알고리즘 5217번 쌍의 합(python) (0) | 2021.02.14 |
백준 알고리즘 5101번 Sequences(python) (0) | 2021.02.14 |