結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー SuburiSuburi
提出日時 2020-09-04 03:16:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 122 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 10,508 KB
実行使用メモリ 11,116 KB
最終ジャッジ日時 2023-08-16 04:16:45
合計ジャッジ時間 2,800 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,316 KB
testcase_01 AC 56 ms
11,088 KB
testcase_02 AC 27 ms
10,228 KB
testcase_03 AC 28 ms
10,416 KB
testcase_04 AC 30 ms
10,256 KB
testcase_05 AC 49 ms
11,116 KB
testcase_06 AC 28 ms
10,268 KB
testcase_07 AC 26 ms
10,424 KB
testcase_08 AC 26 ms
10,240 KB
testcase_09 AC 28 ms
10,424 KB
testcase_10 AC 28 ms
10,420 KB
testcase_11 AC 27 ms
10,428 KB
testcase_12 AC 29 ms
10,412 KB
testcase_13 AC 28 ms
10,272 KB
testcase_14 AC 46 ms
10,892 KB
testcase_15 AC 36 ms
10,544 KB
testcase_16 AC 49 ms
10,928 KB
testcase_17 AC 37 ms
10,588 KB
testcase_18 AC 51 ms
10,904 KB
testcase_19 AC 44 ms
10,844 KB
testcase_20 AC 56 ms
11,056 KB
testcase_21 AC 30 ms
10,280 KB
testcase_22 AC 38 ms
10,660 KB
testcase_23 AC 53 ms
11,024 KB
testcase_24 AC 55 ms
11,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

S = sorted(L, reverse=True)

import statistics

print(statistics.mode(S))
0