結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー yumechiyumechi
提出日時 2017-10-09 23:33:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 5,000 ms
コード長 298 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,104 KB
最終ジャッジ日時 2024-06-26 08:20:22
合計ジャッジ時間 2,231 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,776 KB
testcase_01 AC 61 ms
78,976 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 57 ms
78,976 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 36 ms
52,072 KB
testcase_09 AC 36 ms
51,840 KB
testcase_10 AC 36 ms
51,968 KB
testcase_11 AC 36 ms
51,840 KB
testcase_12 AC 35 ms
51,840 KB
testcase_13 AC 35 ms
51,968 KB
testcase_14 AC 51 ms
71,296 KB
testcase_15 AC 44 ms
63,744 KB
testcase_16 AC 54 ms
74,880 KB
testcase_17 AC 44 ms
63,104 KB
testcase_18 AC 53 ms
74,624 KB
testcase_19 AC 49 ms
69,760 KB
testcase_20 AC 57 ms
79,104 KB
testcase_21 AC 42 ms
59,008 KB
testcase_22 AC 46 ms
65,792 KB
testcase_23 AC 56 ms
78,592 KB
testcase_24 AC 57 ms
78,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
arr = list(map(int, input().split()))
dic = {}
for a in arr:
    if a not in dic:
        dic.update({a:1})
    else:
        dic[a] += 1
maxkey = -1
maxval = -111
for k, v in sorted(dic.items()):
    if v >= maxval:
        maxval = v
        maxkey = max(maxkey, k)
print(maxkey)
0