結果

問題 No.24 数当てゲーム
ユーザー coder_So_heycoder_So_hey
提出日時 2023-01-13 23:03:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 480 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 53,360 KB
最終ジャッジ日時 2024-06-06 23:56:13
合計ジャッジ時間 1,003 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,268 KB
testcase_01 AC 34 ms
52,380 KB
testcase_02 AC 35 ms
53,288 KB
testcase_03 AC 37 ms
53,060 KB
testcase_04 AC 36 ms
52,172 KB
testcase_05 AC 35 ms
52,316 KB
testcase_06 AC 34 ms
52,692 KB
testcase_07 AC 35 ms
52,384 KB
testcase_08 AC 35 ms
53,360 KB
testcase_09 AC 34 ms
53,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
num = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
cand = []
answer = []
bool = False

for i in range(N):
    A, B, C, D, R = map(str, input().split())
    A, B, C, D = int(A), int(B), int(C), int(D)
    if R == "NO":
        num[int(A)] = -1
        num[int(B)] = -1
        num[int(C)] = -1
        num[int(D)] = -1
    else:
        for i in range(10):
            if num[i] != A and num[i] != B and num[i] != C and num[i] != D:
                num[i] = -1

print(max(num))
0