結果

問題 No.1031 いたずら好きなお姉ちゃん
ユーザー MNGOFMNGOF
提出日時 2020-04-27 00:26:51
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,095 bytes
コンパイル時間 717 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 849,468 KB
最終ジャッジ日時 2024-11-19 03:04:02
合計ジャッジ時間 45,115 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,000 KB
testcase_01 AC 40 ms
52,820 KB
testcase_02 AC 39 ms
53,056 KB
testcase_03 AC 106 ms
77,068 KB
testcase_04 AC 107 ms
76,836 KB
testcase_05 AC 116 ms
77,016 KB
testcase_06 AC 109 ms
77,328 KB
testcase_07 AC 120 ms
76,976 KB
testcase_08 AC 105 ms
77,716 KB
testcase_09 AC 106 ms
77,196 KB
testcase_10 AC 110 ms
77,260 KB
testcase_11 AC 273 ms
90,704 KB
testcase_12 AC 281 ms
91,672 KB
testcase_13 AC 294 ms
95,896 KB
testcase_14 AC 285 ms
91,956 KB
testcase_15 AC 300 ms
94,760 KB
testcase_16 AC 272 ms
91,124 KB
testcase_17 AC 297 ms
93,964 KB
testcase_18 AC 292 ms
92,544 KB
testcase_19 AC 295 ms
95,016 KB
testcase_20 AC 302 ms
94,220 KB
testcase_21 AC 291 ms
92,160 KB
testcase_22 AC 276 ms
90,324 KB
testcase_23 AC 292 ms
93,544 KB
testcase_24 AC 299 ms
92,376 KB
testcase_25 AC 292 ms
93,456 KB
testcase_26 AC 293 ms
93,172 KB
testcase_27 AC 283 ms
92,328 KB
testcase_28 AC 294 ms
93,368 KB
testcase_29 AC 305 ms
95,136 KB
testcase_30 AC 298 ms
94,820 KB
testcase_31 AC 309 ms
94,908 KB
testcase_32 AC 296 ms
93,132 KB
testcase_33 AC 303 ms
95,720 KB
testcase_34 AC 62 ms
78,848 KB
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 MLE -
testcase_41 MLE -
testcase_42 MLE -
testcase_43 MLE -
testcase_44 MLE -
testcase_45 RE -
testcase_46 MLE -
testcase_47 MLE -
testcase_48 MLE -
testcase_49 MLE -
testcase_50 MLE -
testcase_51 AC 71 ms
78,216 KB
testcase_52 AC 69 ms
78,620 KB
testcase_53 AC 69 ms
79,620 KB
testcase_54 AC 42 ms
53,252 KB
testcase_55 AC 41 ms
52,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(area):
    if len(area) <= 1:
        return 0
    selected_ind = [0] * len(area)
    max_ind = area.index(max(area))
    min_ind = max_ind
    for i in reversed(range(max_ind)):
        if area[min_ind] > area[i]:
            min_ind = i
            selected_ind[min_ind] = 1
    min_ind = max_ind
    for i in range(max_ind+1, len(area)):
        if area[min_ind] > area[i]:
            min_ind = i
            selected_ind[min_ind] = 1
    count = sum(selected_ind)
    tmp_sum = sum(selected_ind[0:max_ind])
    tmp_len = len(selected_ind[0:max_ind])
    if tmp_len == tmp_sum and tmp_len > 2:
        count += int(tmp_sum * (tmp_sum - 1) / 2)
    else:
        count += solve(area[0:max_ind])
    tmp_sum = sum(selected_ind[max_ind + 1: len(area)])
    tmp_len = len(selected_ind[max_ind + 1: len(area)])
    if tmp_len == tmp_sum and tmp_len > 2:
        count += int(tmp_sum * (tmp_sum - 1) / 2)
    else:
        count += solve(area[max_ind + 1: len(area)])
    return int(count)
    

N = int(input())
data = input().split()
Input = [int(s) for s in data]

print(solve(Input))
0