結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー 田中龍仁田中龍仁
提出日時 2022-02-07 21:34:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 5,000 ms
コード長 196 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 78,468 KB
最終ジャッジ日時 2024-06-22 09:11:58
合計ジャッジ時間 2,255 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,312 KB
testcase_01 AC 60 ms
77,888 KB
testcase_02 AC 34 ms
51,944 KB
testcase_03 AC 33 ms
53,472 KB
testcase_04 AC 34 ms
52,972 KB
testcase_05 AC 51 ms
77,628 KB
testcase_06 AC 34 ms
52,532 KB
testcase_07 AC 32 ms
52,820 KB
testcase_08 AC 34 ms
51,752 KB
testcase_09 AC 32 ms
53,364 KB
testcase_10 AC 32 ms
52,976 KB
testcase_11 AC 33 ms
52,640 KB
testcase_12 AC 32 ms
52,280 KB
testcase_13 AC 33 ms
52,256 KB
testcase_14 AC 51 ms
70,020 KB
testcase_15 AC 41 ms
63,496 KB
testcase_16 AC 56 ms
74,616 KB
testcase_17 AC 40 ms
62,512 KB
testcase_18 AC 53 ms
73,360 KB
testcase_19 AC 47 ms
69,408 KB
testcase_20 AC 60 ms
78,120 KB
testcase_21 AC 36 ms
58,376 KB
testcase_22 AC 43 ms
64,624 KB
testcase_23 AC 61 ms
77,640 KB
testcase_24 AC 60 ms
78,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = list(map(int,input().split()))

max = 0
L.sort()
L2 = sorted(list(set(L)))

for i in L2:
    if max <= L.count(i):
        max = L.count(i)
        ans = i
        
print(ans)
0