結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー あかりきあかりき
提出日時 2021-02-08 07:28:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 236 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 81,400 KB
最終ジャッジ日時 2024-07-05 03:10:00
合計ジャッジ時間 2,606 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
61,092 KB
testcase_01 AC 62 ms
81,088 KB
testcase_02 AC 39 ms
55,020 KB
testcase_03 AC 40 ms
54,656 KB
testcase_04 AC 40 ms
54,644 KB
testcase_05 AC 63 ms
81,312 KB
testcase_06 AC 41 ms
54,444 KB
testcase_07 AC 41 ms
54,312 KB
testcase_08 AC 41 ms
54,700 KB
testcase_09 AC 43 ms
54,592 KB
testcase_10 AC 40 ms
53,904 KB
testcase_11 AC 40 ms
53,504 KB
testcase_12 AC 41 ms
54,300 KB
testcase_13 AC 41 ms
54,724 KB
testcase_14 AC 52 ms
72,268 KB
testcase_15 AC 48 ms
64,768 KB
testcase_16 AC 56 ms
77,212 KB
testcase_17 AC 49 ms
65,300 KB
testcase_18 AC 58 ms
77,356 KB
testcase_19 AC 54 ms
71,192 KB
testcase_20 AC 63 ms
80,604 KB
testcase_21 AC 43 ms
60,476 KB
testcase_22 AC 50 ms
68,716 KB
testcase_23 AC 60 ms
80,516 KB
testcase_24 AC 61 ms
81,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
n=int(input())
l=list(map(int,input().split()))
c=collections.Counter(l)
c2=list(c.most_common())
x=c2[0][1]
ans=[]
for i in range(len(c2)):
  if c2[i][1]==x:
    ans.append(c2[i][0])
  else:
    break
print(max(ans))
0