Forced Choice
This commit is contained in:
4
forcedchoice.py
Normal file
4
forcedchoice.py
Normal file
@@ -0,0 +1,4 @@
|
||||
n, p, s = map(int, input().split())
|
||||
for _ in range(s):
|
||||
cards = list(map(int, input().split()))[1:]
|
||||
print("KEEP" if p in cards else "REMOVE")
|
||||
Reference in New Issue
Block a user