본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 31789번 모험의 시작

by 현장 2024. 5. 10.

-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")