-Code
for _ in range(int(input())):
a, b, c = map(int, input().split())
if c % 2 == 1 and a == 0:
print("NO")
continue
print("YES" if a + b * 2 >= c else "NO")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 27627번 Splitology (1) | 2024.10.21 |
---|---|
[백준/파이썬] 13684번 Divisão da Nlogõnia (0) | 2024.10.20 |
[백준/파이썬] 5362번 Garbled Message (0) | 2024.10.18 |
[백준/파이썬] 6736번 The Idiot of the Year Contest! (0) | 2024.10.17 |
[백준/파이썬] 4974번 ICPC Score Totalizer Software (0) | 2024.10.16 |