結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー もぐら 3.0もぐら 3.0
提出日時 2023-11-14 14:42:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 282 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,640 KB
最終ジャッジ日時 2024-09-26 03:36:59
合計ジャッジ時間 3,010 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
61,056 KB
testcase_01 WA -
testcase_02 AC 43 ms
53,504 KB
testcase_03 AC 43 ms
53,376 KB
testcase_04 AC 43 ms
53,376 KB
testcase_05 AC 70 ms
80,512 KB
testcase_06 AC 45 ms
53,376 KB
testcase_07 AC 45 ms
53,504 KB
testcase_08 AC 46 ms
53,504 KB
testcase_09 AC 44 ms
53,504 KB
testcase_10 AC 44 ms
53,504 KB
testcase_11 AC 44 ms
53,504 KB
testcase_12 AC 44 ms
53,632 KB
testcase_13 AC 44 ms
53,376 KB
testcase_14 AC 63 ms
72,704 KB
testcase_15 AC 55 ms
65,152 KB
testcase_16 AC 66 ms
76,160 KB
testcase_17 WA -
testcase_18 AC 65 ms
75,776 KB
testcase_19 AC 60 ms
71,296 KB
testcase_20 AC 70 ms
80,384 KB
testcase_21 AC 50 ms
60,672 KB
testcase_22 WA -
testcase_23 AC 70 ms
80,000 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N = int(input())
L = list(map(int,input().split()))

counter= defaultdict(int)

for l in L:
    counter[l]+=1


ans=0
now=0
for c in counter.items():
    if c[1]>=now:
        now=c[1]
        if c[0]>ans:
            ans=c[0]
        
print(ans)
0