結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー hiro1729hiro1729
提出日時 2023-11-25 08:39:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 5,000 ms
コード長 243 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 80,512 KB
最終ジャッジ日時 2024-09-26 10:12:20
合計ジャッジ時間 3,083 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
60,928 KB
testcase_01 AC 76 ms
80,384 KB
testcase_02 AC 48 ms
53,504 KB
testcase_03 AC 48 ms
53,504 KB
testcase_04 AC 48 ms
53,376 KB
testcase_05 AC 75 ms
80,512 KB
testcase_06 AC 48 ms
53,248 KB
testcase_07 AC 47 ms
53,632 KB
testcase_08 AC 48 ms
53,504 KB
testcase_09 AC 48 ms
53,632 KB
testcase_10 AC 48 ms
53,372 KB
testcase_11 AC 48 ms
53,504 KB
testcase_12 AC 48 ms
53,888 KB
testcase_13 AC 49 ms
53,760 KB
testcase_14 AC 68 ms
72,576 KB
testcase_15 AC 58 ms
65,280 KB
testcase_16 AC 71 ms
75,648 KB
testcase_17 AC 58 ms
64,768 KB
testcase_18 AC 72 ms
75,904 KB
testcase_19 AC 64 ms
70,912 KB
testcase_20 AC 75 ms
80,128 KB
testcase_21 AC 54 ms
60,544 KB
testcase_22 AC 62 ms
67,200 KB
testcase_23 AC 75 ms
79,616 KB
testcase_24 AC 75 ms
80,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N = int(input())
L = list(map(int, input().split()))
c = Counter(L)
max_cnt = 0
ans = -1
for i, j in list(c.items()):
	if j > max_cnt:
		max_cnt = j
		ans = i
	elif j == max_cnt and i > ans:
		ans = i
print(ans)
0