-Code
n = int(input())
x, s = map(int, input().split())
res = 0
for _ in range(n):
c, p = map(int, input().split())
if x >= c:
res = max(res, p)
print("YES" if res > s else "NO")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 31831번 과민성 대장 증후군 (0) | 2024.05.12 |
---|---|
[백준/파이썬] 29267번 Случай с игрой (0) | 2024.05.11 |
[백준/파이썬] 11258번 Thai Lottery Checking (0) | 2024.05.09 |
[백준/파이썬] 30272번 Atsitiktinių skaičių generatorius (0) | 2024.05.08 |
[백준/파이썬] 31798번 단원평가 (0) | 2024.05.07 |