結果

問題 No.24 数当てゲーム
ユーザー _manji0_manji0
提出日時 2022-01-14 02:10:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 32 ms / 5,000 ms
コード長 342 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 53,616 KB
最終ジャッジ日時 2024-11-18 07:30:36
合計ジャッジ時間 954 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,276 KB
testcase_01 AC 32 ms
52,160 KB
testcase_02 AC 32 ms
52,048 KB
testcase_03 AC 32 ms
53,616 KB
testcase_04 AC 30 ms
52,552 KB
testcase_05 AC 29 ms
53,124 KB
testcase_06 AC 29 ms
52,408 KB
testcase_07 AC 29 ms
53,388 KB
testcase_08 AC 29 ms
52,964 KB
testcase_09 AC 30 ms
53,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

L = [1] * 10

for _ in range(N):
    q = [ i for i in input().split() ]
    
    if q[-1] == "NO":
        for i in q[:-1]:
            L[int(i)] *= 0
    else:
        for i in q[:-1]:
            L[int(i)] *= 2

max = 0
ans = 0

for i, l in enumerate(L):
    if l > max:
        ans = i       
        max = l

print(ans)
0