結果
問題 | No.24 数当てゲーム |
ユーザー | 猫吉 |
提出日時 | 2018-10-01 20:36:56 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 375 bytes |
コンパイル時間 | 77 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-10-12 09:52:45 |
合計ジャッジ時間 | 911 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | WA | - |
testcase_03 | AC | 32 ms
10,880 KB |
testcase_04 | WA | - |
testcase_05 | AC | 29 ms
10,752 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 28 ms
10,752 KB |
ソースコード
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