Submission #6430958


Source Code Expand

e = list(input().split())
b = input()
l = list(input().split())
answer = 0

if sorted(e) == sorted(l):
    answer = 1
else:
    w_notin = [lw for lw in l if lw not in e]
    if len(w_notin) == 1 and w_notin[0] == b:
        answer = 2
    else:
        w_in = [lw for lw in l if lw in e]
        if len(w_in) == 5:
            answer = 3
        elif len(w_in) == 4:
            answer = 4
        elif len(w_in) == 3:
            answer = 5
        else:
            pass

print(answer)

Submission Info

Submission Time
Task A - 宝くじ
User number09
Language Python (3.4.3)
Score 100
Code Size 509 Byte
Status AC
Exec Time 20 ms
Memory 3064 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 51
Set Name Test Cases
All 00_1_01.txt, 00_1_02.txt, 00_2_01.txt, 00_2_02.txt, 00_3_01.txt, 00_3_02.txt, 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt, 00_sample_04.txt, 00_sample_05.txt, 01_rand_00.txt, 01_rand_01.txt, 01_rand_02.txt, 01_rand_03.txt, 01_rand_04.txt, 01_rand_05.txt, 01_rand_06.txt, 01_rand_07.txt, 01_rand_08.txt, 01_rand_09.txt, 01_rand_10.txt, 01_rand_11.txt, 01_rand_12.txt, 01_rand_13.txt, 01_rand_14.txt, 01_rand_15.txt, 01_rand_16.txt, 01_rand_17.txt, 01_rand_18.txt, 01_rand_19.txt, 01_rand_20.txt, 01_rand_21.txt, 01_rand_22.txt, 01_rand_23.txt, 01_rand_24.txt, 01_rand_25.txt, 01_rand_26.txt, 01_rand_27.txt, 01_rand_28.txt, 01_rand_29.txt, 01_rand_30.txt, 01_rand_31.txt, 01_rand_32.txt, 01_rand_33.txt, 01_rand_34.txt, 01_rand_35.txt, 01_rand_36.txt, 01_rand_37.txt, 01_rand_38.txt, 01_rand_39.txt
Case Name Status Exec Time Memory
00_1_01.txt AC 17 ms 3064 KB
00_1_02.txt AC 17 ms 3064 KB
00_2_01.txt AC 17 ms 3064 KB
00_2_02.txt AC 17 ms 3064 KB
00_3_01.txt AC 17 ms 3064 KB
00_3_02.txt AC 17 ms 3064 KB
00_sample_01.txt AC 17 ms 3064 KB
00_sample_02.txt AC 17 ms 3064 KB
00_sample_03.txt AC 17 ms 3064 KB
00_sample_04.txt AC 17 ms 3064 KB
00_sample_05.txt AC 17 ms 3064 KB
01_rand_00.txt AC 17 ms 3064 KB
01_rand_01.txt AC 17 ms 3064 KB
01_rand_02.txt AC 17 ms 3064 KB
01_rand_03.txt AC 17 ms 3064 KB
01_rand_04.txt AC 17 ms 3064 KB
01_rand_05.txt AC 17 ms 3064 KB
01_rand_06.txt AC 17 ms 3064 KB
01_rand_07.txt AC 17 ms 3064 KB
01_rand_08.txt AC 17 ms 3064 KB
01_rand_09.txt AC 17 ms 3064 KB
01_rand_10.txt AC 17 ms 3064 KB
01_rand_11.txt AC 17 ms 3064 KB
01_rand_12.txt AC 17 ms 3064 KB
01_rand_13.txt AC 17 ms 3064 KB
01_rand_14.txt AC 17 ms 3064 KB
01_rand_15.txt AC 17 ms 3064 KB
01_rand_16.txt AC 17 ms 3064 KB
01_rand_17.txt AC 17 ms 3064 KB
01_rand_18.txt AC 17 ms 3064 KB
01_rand_19.txt AC 17 ms 3064 KB
01_rand_20.txt AC 17 ms 3064 KB
01_rand_21.txt AC 17 ms 3064 KB
01_rand_22.txt AC 17 ms 3064 KB
01_rand_23.txt AC 17 ms 3064 KB
01_rand_24.txt AC 17 ms 3064 KB
01_rand_25.txt AC 17 ms 3064 KB
01_rand_26.txt AC 17 ms 3064 KB
01_rand_27.txt AC 17 ms 3064 KB
01_rand_28.txt AC 17 ms 3064 KB
01_rand_29.txt AC 17 ms 3064 KB
01_rand_30.txt AC 17 ms 3064 KB
01_rand_31.txt AC 17 ms 3064 KB
01_rand_32.txt AC 17 ms 3064 KB
01_rand_33.txt AC 17 ms 3064 KB
01_rand_34.txt AC 17 ms 3064 KB
01_rand_35.txt AC 17 ms 3064 KB
01_rand_36.txt AC 17 ms 3064 KB
01_rand_37.txt AC 17 ms 3064 KB
01_rand_38.txt AC 20 ms 3064 KB
01_rand_39.txt AC 17 ms 3064 KB