結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー RyutoRyuto
提出日時 2018-03-31 14:03:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 5,000 ms
コード長 230 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 73,856 KB
最終ジャッジ日時 2024-06-26 08:26:20
合計ジャッジ時間 2,387 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
60,672 KB
testcase_01 AC 60 ms
73,600 KB
testcase_02 AC 42 ms
53,248 KB
testcase_03 AC 44 ms
53,376 KB
testcase_04 AC 42 ms
53,248 KB
testcase_05 AC 61 ms
73,600 KB
testcase_06 AC 44 ms
53,632 KB
testcase_07 AC 43 ms
54,016 KB
testcase_08 AC 43 ms
53,888 KB
testcase_09 AC 43 ms
53,952 KB
testcase_10 AC 44 ms
53,376 KB
testcase_11 AC 42 ms
54,144 KB
testcase_12 AC 42 ms
53,248 KB
testcase_13 AC 43 ms
53,376 KB
testcase_14 AC 56 ms
68,608 KB
testcase_15 AC 51 ms
63,488 KB
testcase_16 AC 58 ms
70,912 KB
testcase_17 AC 50 ms
62,848 KB
testcase_18 AC 57 ms
70,784 KB
testcase_19 AC 54 ms
68,096 KB
testcase_20 AC 60 ms
73,728 KB
testcase_21 AC 49 ms
60,160 KB
testcase_22 AC 51 ms
64,896 KB
testcase_23 AC 60 ms
73,832 KB
testcase_24 AC 62 ms
73,856 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