結果

問題 No.24 数当てゲーム
ユーザー zakuro9715zakuro9715
提出日時 2015-10-08 01:03:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 249 bytes
コンパイル時間 656 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 53,280 KB
最終ジャッジ日時 2024-07-20 02:00:41
合計ジャッジ時間 1,135 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,212 KB
testcase_01 AC 38 ms
52,176 KB
testcase_02 AC 36 ms
53,152 KB
testcase_03 AC 37 ms
52,052 KB
testcase_04 AC 37 ms
52,828 KB
testcase_05 AC 37 ms
52,496 KB
testcase_06 AC 37 ms
52,192 KB
testcase_07 AC 36 ms
52,236 KB
testcase_08 AC 37 ms
52,060 KB
testcase_09 AC 37 ms
53,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
s = [True] * 10

for i in range(N):
    x = input().split()
    xx = list(map(int, x[0:4]))
    for j in range(10):
        if (j in xx) ^ (x[-1] == 'YES'):
            s[j] = False
for i in range(10):
    if s[i]:
        print(i)
0