結果

問題 No.24 数当てゲーム
ユーザー splash9494splash9494
提出日時 2024-05-08 00:46:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 324 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 66,924 KB
最終ジャッジ日時 2024-05-08 00:46:48
合計ジャッジ時間 1,364 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 37 ms
52,352 KB
testcase_06 WA -
testcase_07 RE -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

states = [0 for _ in range(10)]
ns = [list(input().split()) for _ in range(N)]
for nl in ns:
    r, indexes = nl[-1], list(map(int, nl[:-1]))
    for i in indexes:
        states[i] = 2 if (r == 'NO') or not states[i] else 1

ans_index = states.index(1) if 1 in states else states.index(0)
print(ans_index)
0