結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー roiti46roiti46
提出日時 2014-12-17 00:34:12
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 230 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 10,480 KB
最終ジャッジ日時 2024-06-11 22:06:00
合計ジャッジ時間 2,038 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
6,656 KB
testcase_01 AC 80 ms
10,336 KB
testcase_02 AC 15 ms
6,528 KB
testcase_03 AC 15 ms
6,656 KB
testcase_04 AC 13 ms
6,656 KB
testcase_05 AC 77 ms
10,480 KB
testcase_06 AC 14 ms
6,528 KB
testcase_07 RE -
testcase_08 AC 13 ms
6,656 KB
testcase_09 AC 13 ms
6,400 KB
testcase_10 AC 13 ms
6,528 KB
testcase_11 AC 13 ms
6,400 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 51 ms
8,876 KB
testcase_15 AC 29 ms
7,584 KB
testcase_16 AC 61 ms
9,396 KB
testcase_17 AC 28 ms
7,444 KB
testcase_18 AC 60 ms
9,368 KB
testcase_19 AC 47 ms
8,704 KB
testcase_20 AC 78 ms
10,476 KB
testcase_21 AC 14 ms
6,656 KB
testcase_22 AC 36 ms
7,788 KB
testcase_23 AC 74 ms
10,292 KB
testcase_24 AC 76 ms
10,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N = int(raw_input())
poll = [0]*N
for i in map(int,raw_input().split()):
    poll[i-1] += 1
mx = max(poll)
for i in range(N-1,-1,-1):
    if poll[i] == mx:
        print i+1
        break
0