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

[백준/파이썬] 23663번 Deja vu of Go Players

by 현장 2024. 4. 21.

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