Submission #1229787


Source Code Expand

card = [ input() for i in range(3) ]
count = [0, 0, 0]
curr = 0
while count[curr] != len(card[curr]):
    if card[curr][count[curr]] == "a":
        tmp = 0
    if card[curr][count[curr]] == "b":
        tmp = 1
    if card[curr][count[curr]] == "c":
        tmp = 2
    count[curr] += 1
    curr = tmp
print("ABC"[curr])

Submission Info

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

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status AC
AC × 12
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, sample_01.txt, sample_02.txt
Case Name Status Exec Time Memory
01.txt AC 17 ms 3064 KB
02.txt AC 17 ms 3060 KB
03.txt AC 17 ms 3060 KB
04.txt AC 17 ms 3060 KB
05.txt AC 17 ms 3064 KB
06.txt AC 17 ms 2940 KB
07.txt AC 17 ms 3060 KB
08.txt AC 17 ms 3060 KB
09.txt AC 17 ms 3060 KB
10.txt AC 17 ms 3060 KB
sample_01.txt AC 17 ms 2940 KB
sample_02.txt AC 17 ms 3060 KB