結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー ABKZABKZ
提出日時 2021-06-26 23:21:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 168 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 87,000 KB
実行使用メモリ 89,620 KB
最終ジャッジ日時 2023-09-07 15:47:24
合計ジャッジ時間 4,370 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
77,136 KB
testcase_01 AC 113 ms
89,620 KB
testcase_02 AC 91 ms
71,820 KB
testcase_03 AC 89 ms
71,720 KB
testcase_04 AC 92 ms
71,368 KB
testcase_05 AC 115 ms
89,620 KB
testcase_06 AC 91 ms
71,748 KB
testcase_07 AC 89 ms
71,748 KB
testcase_08 AC 91 ms
71,656 KB
testcase_09 AC 90 ms
71,572 KB
testcase_10 AC 90 ms
71,616 KB
testcase_11 AC 94 ms
71,568 KB
testcase_12 AC 91 ms
71,820 KB
testcase_13 AC 90 ms
71,884 KB
testcase_14 AC 106 ms
83,864 KB
testcase_15 AC 101 ms
78,592 KB
testcase_16 AC 111 ms
86,732 KB
testcase_17 AC 99 ms
78,388 KB
testcase_18 AC 110 ms
86,504 KB
testcase_19 AC 105 ms
83,200 KB
testcase_20 AC 114 ms
89,512 KB
testcase_21 AC 98 ms
77,352 KB
testcase_22 AC 102 ms
80,152 KB
testcase_23 AC 112 ms
89,364 KB
testcase_24 AC 113 ms
89,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

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

cnt = collections.Counter(L).most_common()

print(max([v for v, c in cnt if c == cnt[0][1]]))
0