Submission #876284


Source Code Expand

a = list(input())
b = list(input())
c = list(input())
current = "a"
while True:
    if current == "a":
        if len(a) == 0:
            print("A")
            break
        else:
            current = a.pop(0)
    elif current == "b":
        if len(b) == 0:
            print("B")
            break
        else:
            current = b.pop(0)
    else:
        if len(c) == 0:
            print("C")
            break
        else:
            current = c.pop(0)

Submission Info

Submission Time
Task B - Card Game for Three (ABC Edit)
User yumechi
Language Python (3.4.3)
Score 200
Code Size 491 Byte
Status AC
Exec Time 37 ms
Memory 3064 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status AC
AC × 10
Set Name Test Cases
Sample
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt
Case Name Status Exec Time Memory
01.txt AC 36 ms 3064 KB
02.txt AC 37 ms 3064 KB
03.txt AC 36 ms 3064 KB
04.txt AC 37 ms 3064 KB
05.txt AC 36 ms 3064 KB
06.txt AC 36 ms 3064 KB
07.txt AC 36 ms 3064 KB
08.txt AC 37 ms 3064 KB
09.txt AC 37 ms 3064 KB
10.txt AC 36 ms 3064 KB
sample_01.txt AC 36 ms 3064 KB
sample_02.txt AC 36 ms 3064 KB