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

[백준/파이썬] 21200번 Forced Choice

by 현장 2024. 2. 26.

-Code

n, p, s = map(int, input().split())

for _ in range(s):
    nums = list(map(int, input().split()))

    if p in nums[1:]:
        print("KEEP")
    else:
        print("REMOVE")