結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー qib
提出日時 2023-04-18 19:47:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 5,000 ms
コード長 180 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2024-10-13 19:25:56
合計ジャッジ時間 2,899 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cnt = {}
for x in l:
  cnt[x] = cnt.get(x, 0) + 1

vs = list(cnt.items())
vs.sort(key=lambda x: (x[1], x[0]))
print(vs[-1][0])
0