結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー tnodino
提出日時 2022-02-26 20:35:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 254 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,784 KB
最終ジャッジ日時 2024-07-04 17:18:01
合計ジャッジ時間 1,974 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N = int(input())
L = list(map(int,input().split()))
dic = defaultdict(int)
for i in range(N):
    dic[L[i]] += 1
M = max(dic.values())
ans = 0
for k,v in dic.items():
    if M == v:
        ans = max(ans, k)
print(ans)
0