結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー noriocnorioc
提出日時 2022-05-12 03:17:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 136 bytes
コンパイル時間 596 ms
コンパイル使用メモリ 10,648 KB
実行使用メモリ 10,428 KB
最終ジャッジ日時 2023-09-26 23:37:25
合計ジャッジ時間 3,119 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 42 ms
10,428 KB
testcase_02 AC 18 ms
8,480 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 41 ms
10,332 KB
testcase_06 AC 18 ms
8,552 KB
testcase_07 AC 18 ms
8,580 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 19 ms
8,620 KB
testcase_11 WA -
testcase_12 AC 19 ms
8,436 KB
testcase_13 AC 18 ms
8,568 KB
testcase_14 AC 32 ms
9,232 KB
testcase_15 AC 25 ms
8,880 KB
testcase_16 AC 36 ms
9,664 KB
testcase_17 AC 24 ms
8,824 KB
testcase_18 AC 35 ms
9,444 KB
testcase_19 AC 31 ms
9,364 KB
testcase_20 AC 42 ms
10,336 KB
testcase_21 AC 19 ms
8,528 KB
testcase_22 AC 27 ms
9,008 KB
testcase_23 AC 40 ms
10,108 KB
testcase_24 AC 41 ms
10,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N = int(input())
L = list(map(int, input().split()))

ans = Counter(L).most_common(1)[0][0]
print(ans)
0