-Code
for _ in range(int(input())):
red, white = map(int, input().split())
red_list = list(map(int, input().split()))
white_list = list(map(int, input().split()))
print("Yes" if red <= white else "No")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 31097번 Astrology (0) | 2024.04.23 |
---|---|
[백준/파이썬] 28135번 Since 1973 (0) | 2024.04.22 |
[백준/파이썬] 31655번 International Dates (0) | 2024.04.20 |
[백준/파이썬] 26863번 Absolutely Flat (1) | 2024.04.19 |
[백준/파이썬] 15083번 Life Savings (0) | 2024.04.18 |