結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー rpy3cpprpy3cpp
提出日時 2015-07-20 21:44:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 203 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,608 KB
最終ジャッジ日時 2024-07-08 11:24:26
合計ジャッジ時間 2,397 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 78 ms
12,512 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 76 ms
12,348 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 RE -
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,496 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 59 ms
11,720 KB
testcase_15 AC 42 ms
10,880 KB
testcase_16 AC 67 ms
12,004 KB
testcase_17 AC 42 ms
11,264 KB
testcase_18 AC 65 ms
11,904 KB
testcase_19 AC 56 ms
11,640 KB
testcase_20 AC 78 ms
12,608 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 47 ms
11,392 KB
testcase_23 AC 74 ms
12,288 KB
testcase_24 AC 76 ms
12,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
Ls = list(map(int, input().split()))
freq = [0] * (N + 1)
for l in Ls:
    freq[l] += 1
fmax = max(freq)
for i in range(N, 0, -1):
    if freq[i] == fmax:
        print(i)
        break
0