結果

問題 No.24 数当てゲーム
ユーザー jjwattjjwatt
提出日時 2020-03-18 09:26:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 34 ms / 5,000 ms
コード長 721 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-08 02:07:30
合計ジャッジ時間 1,018 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 34 ms
10,880 KB
testcase_04 AC 33 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=[i for i in range(10)]
b=[]
count=0
for i in range(n):
    x=list(input().split())
    if x[4]=="NO":
        for i in range(4):
            if int(x[i]) in a:
                a.remove(int(x[i]))
            else:
                continue
    elif x[4]=="YES" and count==0:
        b.append(int(x[0]))
        b.append(int(x[1]))
        b.append(int(x[2]))
        b.append(int(x[3]))
        count+=1
    elif x[4]=="YES" and count>=1:
        b.append(int(x[0]))
        b.append(int(x[1]))
        b.append(int(x[2]))
        b.append(int(x[3]))
        b=[x for x in set(b) if b.count(x) > 1]
if a==[]:
    print(*b)
elif b==[]:
    print(*a)
else:
    for i in list(set(a)&set(b)):
        print(i)
0