-Code
t, d, m = map(int, input().split())
now, res = 0, "N"
for _ in range(m):
y = int(input())
if y - now >= t:
res = "Y"
break
now = y
if d - now >= t:
res = "Y"
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 29097번 Короли (0) | 2024.08.02 |
---|---|
[백준/파이썬] 11880번 개미 (0) | 2024.08.01 |
[백준/파이썬] 24376번 РЕДИЦА (0) | 2024.07.30 |
[백준/파이썬] 31995번 게임말 올려놓기 (0) | 2024.07.29 |
[백준/파이썬] 29070번 Ремонт от BB-8 (0) | 2024.07.28 |