-Code
a, b = map(int, input().split())
c, d = map(int, input().split())
t = int(input())
res = t - abs(a - c) - abs(b - d)
print("Y" if res >= 0 and res % 2 == 0 else "N")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32399번 햄버거 정렬 (0) | 2024.09.30 |
---|---|
[백준/파이썬] 32369번 양파 실험 (0) | 2024.09.29 |
[백준/파이썬] 32216번 찬물 샤워 (0) | 2024.09.27 |
[백준/파이썬] 32246번 빙고 막기 (1) | 2024.09.26 |
[백준/파이썬] 3533번 Explicit Formula (0) | 2024.09.25 |