結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー ABKZ
提出日時 2021-06-26 23:21:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 168 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-06-25 09:40:59
合計ジャッジ時間 2,782 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

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