結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー ryusukeryusuke
提出日時 2022-02-07 21:14:08
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 191 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 81,900 KB
最終ジャッジ日時 2024-06-22 08:15:29
合計ジャッジ時間 2,449 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
62,012 KB
testcase_01 AC 61 ms
81,080 KB
testcase_02 AC 38 ms
52,332 KB
testcase_03 AC 37 ms
52,520 KB
testcase_04 AC 37 ms
52,568 KB
testcase_05 AC 59 ms
81,160 KB
testcase_06 AC 39 ms
53,476 KB
testcase_07 RE -
testcase_08 AC 37 ms
53,072 KB
testcase_09 AC 38 ms
53,696 KB
testcase_10 AC 39 ms
53,212 KB
testcase_11 AC 38 ms
52,680 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 53 ms
73,968 KB
testcase_15 AC 45 ms
65,444 KB
testcase_16 AC 57 ms
76,800 KB
testcase_17 AC 46 ms
64,156 KB
testcase_18 AC 55 ms
76,172 KB
testcase_19 AC 51 ms
72,024 KB
testcase_20 AC 60 ms
80,836 KB
testcase_21 AC 45 ms
61,212 KB
testcase_22 AC 48 ms
67,444 KB
testcase_23 AC 58 ms
81,900 KB
testcase_24 AC 60 ms
81,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cnt = [0] * n
for i in l:
    cnt[i - 1] += 1

ma = max(cnt)
for i in reversed(range(n)):
    if cnt[i] == ma:
        exit(print(i + 1))
0