結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー ohana
提出日時 2023-10-20 11:51:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 200 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-09-20 07:23:28
合計ジャッジ時間 2,246 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

n = int(input())
A = list(map(int, input().split()))

mx, ind = 0, 0
D = Counter(A)
for d in sorted(D.keys()):
    if D[d] >= mx:
        mx, ind = D[d], d
print(ind)
0