diff --git a/forcedchoice.py b/forcedchoice.py new file mode 100644 index 0000000..eb041c6 --- /dev/null +++ b/forcedchoice.py @@ -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")