結果

問題 No.24 数当てゲーム
ユーザー tt
提出日時 2020-06-05 02:00:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 308 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,624 KB
最終ジャッジ日時 2024-05-08 02:20:51
合計ジャッジ時間 6,635 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 473 ms
44,232 KB
testcase_02 AC 492 ms
44,236 KB
testcase_03 AC 477 ms
44,120 KB
testcase_04 AC 458 ms
43,980 KB
testcase_05 WA -
testcase_06 AC 464 ms
43,848 KB
testcase_07 AC 457 ms
44,232 KB
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
cnt = np.zeros(9)

for i in range(N):
    A = [str(i) for i in input().split()]
    if(A[4] == 'YES'):
        for j in range(4):
            cnt[int(A[j])-1] += 1
    if(A[4] == 'NO'):
        for j in range(4):
            cnt[int(A[j])-1] -= 1

print(np.argmax(cnt)+1)
0