結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー Luoto-greenLuoto-green
提出日時 2017-07-05 11:33:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 195 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 12,524 KB
最終ジャッジ日時 2024-10-05 19:48:40
合計ジャッジ時間 2,530 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 135 ms
12,524 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 WA -
testcase_05 AC 109 ms
12,488 KB
testcase_06 AC 29 ms
10,368 KB
testcase_07 AC 29 ms
10,496 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 29 ms
10,496 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 92 ms
11,732 KB
testcase_15 AC 55 ms
11,136 KB
testcase_16 AC 112 ms
11,892 KB
testcase_17 AC 51 ms
11,008 KB
testcase_18 AC 106 ms
12,008 KB
testcase_19 AC 83 ms
11,648 KB
testcase_20 AC 139 ms
12,484 KB
testcase_21 AC 32 ms
10,624 KB
testcase_22 AC 66 ms
11,264 KB
testcase_23 AC 125 ms
12,340 KB
testcase_24 AC 131 ms
12,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = list(map(int,input().split()))
sa = [0]*(max(s)+1)
for i in s:
    sa[i] += 1
    if sa.count(sa.index(max(sa)))>1:
        sa[sa.index(max(sa))] -=1
print(sa.index(max(sa)))
0