結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー szkhts
提出日時 2025-02-09 08:14:04
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 245 bytes
コンパイル時間 967 ms
コンパイル使用メモリ 12,032 KB
実行使用メモリ 12,224 KB
最終ジャッジ日時 2025-02-09 08:14:07
合計ジャッジ時間 3,235 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
L = list(map(int, input().split()))
cnt = [0] * max(L)

for i in range(n):
    cnt[L[i] - 1] += 1
    
idx = 0
mx = 0
for i in range(len(cnt) - 1, -1, -1):
    if cnt[i] > mx:
        mx = cnt[i]
        idx = i + 1

print(idx) 
0