結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー RyutoRyuto
提出日時 2018-03-31 14:03:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 230 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 87,064 KB
実行使用メモリ 84,312 KB
最終ジャッジ日時 2023-09-08 15:23:44
合計ジャッジ時間 3,989 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
77,344 KB
testcase_01 AC 112 ms
84,148 KB
testcase_02 AC 93 ms
71,564 KB
testcase_03 AC 92 ms
71,580 KB
testcase_04 AC 92 ms
71,792 KB
testcase_05 AC 110 ms
84,180 KB
testcase_06 AC 92 ms
71,912 KB
testcase_07 AC 92 ms
71,576 KB
testcase_08 AC 92 ms
71,776 KB
testcase_09 AC 92 ms
71,388 KB
testcase_10 AC 94 ms
71,776 KB
testcase_11 AC 93 ms
71,764 KB
testcase_12 AC 91 ms
71,768 KB
testcase_13 AC 92 ms
71,768 KB
testcase_14 AC 106 ms
81,280 KB
testcase_15 AC 104 ms
78,204 KB
testcase_16 AC 111 ms
82,464 KB
testcase_17 AC 101 ms
78,152 KB
testcase_18 AC 108 ms
82,516 KB
testcase_19 AC 105 ms
80,532 KB
testcase_20 AC 110 ms
84,140 KB
testcase_21 AC 98 ms
77,536 KB
testcase_22 AC 102 ms
79,116 KB
testcase_23 AC 109 ms
84,312 KB
testcase_24 AC 111 ms
84,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python
from collections import Counter
n = int(input())
inval = [int(x) for x in input().split()]
tl = Counter(inval)
tl = sorted(tl.items(), key=lambda x: x[0])
tl = sorted(tl, key=lambda x: x[1])
print(tl[-1][0])
0