結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー otsunekootsuneko
提出日時 2021-05-07 08:56:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 311 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 80,384 KB
最終ジャッジ日時 2024-09-14 22:04:30
合計ジャッジ時間 2,482 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
60,672 KB
testcase_01 AC 72 ms
80,000 KB
testcase_02 AC 45 ms
53,120 KB
testcase_03 AC 45 ms
53,120 KB
testcase_04 AC 46 ms
53,504 KB
testcase_05 AC 71 ms
80,384 KB
testcase_06 AC 45 ms
53,248 KB
testcase_07 AC 46 ms
53,248 KB
testcase_08 AC 45 ms
53,248 KB
testcase_09 AC 45 ms
53,120 KB
testcase_10 AC 45 ms
53,120 KB
testcase_11 AC 45 ms
53,376 KB
testcase_12 AC 44 ms
53,504 KB
testcase_13 AC 45 ms
52,864 KB
testcase_14 AC 63 ms
72,448 KB
testcase_15 AC 56 ms
65,024 KB
testcase_16 AC 66 ms
75,520 KB
testcase_17 AC 55 ms
64,256 KB
testcase_18 AC 67 ms
75,264 KB
testcase_19 AC 62 ms
70,784 KB
testcase_20 AC 70 ms
80,000 KB
testcase_21 AC 51 ms
60,416 KB
testcase_22 AC 58 ms
66,688 KB
testcase_23 AC 70 ms
79,488 KB
testcase_24 AC 72 ms
79,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

max_v = 0
level = 0
for key in d:
    if d[key] > max_v:
        max_v = d[key]
        level = key
    elif d[key] == max_v and key > level:
        max_v = d[key]
        level = key
print(level)
0