結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 87 ms
15,292 KB
testcase_02 AC 51 ms
13,696 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 86 ms
15,420 KB
testcase_06 AC 51 ms
13,824 KB
testcase_07 AC 51 ms
13,696 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 51 ms
13,824 KB
testcase_11 WA -
testcase_12 AC 50 ms
13,696 KB
testcase_13 AC 50 ms
13,696 KB
testcase_14 AC 70 ms
14,532 KB
testcase_15 AC 59 ms
13,952 KB
testcase_16 AC 77 ms
14,824 KB
testcase_17 AC 58 ms
13,952 KB
testcase_18 AC 76 ms
14,816 KB
testcase_19 AC 68 ms
14,592 KB
testcase_20 AC 85 ms
15,420 KB
testcase_21 AC 51 ms
13,952 KB
testcase_22 AC 62 ms
14,080 KB
testcase_23 AC 84 ms
15,140 KB
testcase_24 AC 84 ms
15,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

print(statistics.mode(b))
    
0