結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,228 KB
testcase_01 AC 35 ms
52,744 KB
testcase_02 AC 35 ms
53,440 KB
testcase_03 AC 95 ms
77,144 KB
testcase_04 AC 99 ms
76,884 KB
testcase_05 AC 102 ms
77,172 KB
testcase_06 AC 98 ms
77,136 KB
testcase_07 AC 107 ms
77,484 KB
testcase_08 AC 93 ms
77,168 KB
testcase_09 AC 97 ms
76,820 KB
testcase_10 AC 98 ms
76,728 KB
testcase_11 AC 237 ms
90,708 KB
testcase_12 AC 245 ms
91,800 KB
testcase_13 AC 261 ms
95,640 KB
testcase_14 AC 244 ms
92,360 KB
testcase_15 AC 260 ms
95,532 KB
testcase_16 AC 251 ms
90,992 KB
testcase_17 AC 263 ms
94,220 KB
testcase_18 AC 258 ms
92,196 KB
testcase_19 AC 259 ms
94,888 KB
testcase_20 AC 271 ms
94,428 KB
testcase_21 AC 250 ms
92,940 KB
testcase_22 AC 242 ms
90,052 KB
testcase_23 AC 246 ms
93,928 KB
testcase_24 AC 252 ms
92,708 KB
testcase_25 AC 255 ms
93,324 KB
testcase_26 AC 251 ms
93,172 KB
testcase_27 AC 243 ms
92,172 KB
testcase_28 AC 256 ms
93,480 KB
testcase_29 AC 267 ms
95,336 KB
testcase_30 AC 257 ms
94,696 KB
testcase_31 AC 258 ms
94,788 KB
testcase_32 AC 258 ms
93,100 KB
testcase_33 AC 261 ms
95,720 KB
testcase_34 AC 57 ms
78,184 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 265 ms
78,768 KB
testcase_52 AC 61 ms
78,808 KB
testcase_53 AC 60 ms
79,200 KB
testcase_54 AC 36 ms
53,404 KB
testcase_55 AC 35 ms
52,028 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 += 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 += 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