-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")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 7279번 Autobusas (0) | 2024.02.28 |
---|---|
[백준/파이썬] 8826번 Spacer (0) | 2024.02.27 |
[백준/파이썬] 30310번 Finding Forks (0) | 2024.02.25 |
[백준/파이썬] 24296번 ЛИНИЯ (0) | 2024.02.24 |
[백준/파이썬] 7130번 Milk and Honey (0) | 2024.02.23 |