結果

問題 No.24 数当てゲーム
ユーザー zyxwzyxw
提出日時 2020-10-11 10:19:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 491 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-20 17:07:50
合計ジャッジ時間 831 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 26 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
data=[input().split() for i in range(n)]
d=[int(s) for s in list("0123456789")]
d_2=[]
for i in range(n):
    if data[i][4]=="NO":
        for j in range(4):
            d[int(data[i][j])]=-1
    else:
        for j in range(4):
            d_2.append(int(data[i][j]))
d_3=[]
for i in range(10):
    if d[i]>=0:
        d_3.append(d[i])
if len(d_3)==1:
    print(d_3[0])
else:
    for i in range(len(d_3)):
        if d_3[i] in d_2:
            print(d_3[i])
            break
0