結果

問題 No.24 数当てゲーム
ユーザー 猫吉猫吉
提出日時 2018-10-01 20:36:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 375 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-04-20 14:20:55
合計ジャッジ時間 1,020 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 34 ms
10,752 KB
testcase_02 WA -
testcase_03 AC 33 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 31 ms
10,624 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 32 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
array = [list(map(str, input().split())) for _ in range(n)]
number = [[0,1,2,3,4,5,6,7,8,9],[0,0,0,0,0,0,0,0,0,0]]
max = 0

for num in range(n):
    if array[num][4] == 'YES':
        max += 1
        for i in range(4):
            number[1][int(array[num][i])] += 1

for i in range(10):
    if max == number[1][i]:
        print(number[0][i])
        break
0