結果

問題 No.24 数当てゲーム
ユーザー tobusakanatobusakana
提出日時 2022-11-20 11:16:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 291 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 52,952 KB
最終ジャッジ日時 2024-09-21 12:13:52
合計ジャッジ時間 1,651 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,488 KB
testcase_01 AC 36 ms
52,084 KB
testcase_02 AC 35 ms
52,360 KB
testcase_03 AC 34 ms
52,248 KB
testcase_04 AC 36 ms
52,876 KB
testcase_05 AC 36 ms
51,628 KB
testcase_06 AC 35 ms
52,952 KB
testcase_07 AC 36 ms
52,556 KB
testcase_08 AC 36 ms
52,648 KB
testcase_09 AC 37 ms
52,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
candi = set(list(range(10)))
for _ in range(N):
    a,b,c,d,r = input().split()
    A = [a,b,c,d]
    A = list(map(int,A))
    if r == "NO":
        for a in A:
            if a in candi:
                candi.remove(a)
    else:
        candi &= set(A)

print(candi.pop())
0