結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー panapanagdfpanapanagdf
提出日時 2019-09-20 16:36:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 96 bytes
コンパイル時間 853 ms
コンパイル使用メモリ 10,696 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2023-10-12 08:15:06
合計ジャッジ時間 3,486 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 58 ms
12,160 KB
testcase_02 AC 33 ms
10,424 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 61 ms
12,088 KB
testcase_06 AC 34 ms
10,364 KB
testcase_07 AC 34 ms
10,236 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 33 ms
10,264 KB
testcase_11 WA -
testcase_12 AC 34 ms
10,240 KB
testcase_13 AC 34 ms
10,436 KB
testcase_14 AC 49 ms
11,212 KB
testcase_15 AC 38 ms
10,804 KB
testcase_16 AC 54 ms
11,468 KB
testcase_17 AC 39 ms
10,640 KB
testcase_18 AC 53 ms
11,276 KB
testcase_19 AC 48 ms
11,200 KB
testcase_20 AC 61 ms
12,068 KB
testcase_21 AC 35 ms
10,300 KB
testcase_22 AC 42 ms
10,868 KB
testcase_23 AC 58 ms
12,004 KB
testcase_24 AC 59 ms
11,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import statistics
a=input()
b=[int(i) for i in input().split()]

print(statistics.mode(b))
    
0