結果

問題 No.1031 いたずら好きなお姉ちゃん
ユーザー MNGOFMNGOF
提出日時 2020-04-26 23:58:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,172 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 361,752 KB
最終ジャッジ日時 2024-11-19 00:40:06
合計ジャッジ時間 101,304 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
318,428 KB
testcase_01 AC 36 ms
59,012 KB
testcase_02 AC 36 ms
60,648 KB
testcase_03 AC 97 ms
341,592 KB
testcase_04 AC 115 ms
84,984 KB
testcase_05 AC 106 ms
83,956 KB
testcase_06 AC 101 ms
84,516 KB
testcase_07 AC 100 ms
84,136 KB
testcase_08 AC 102 ms
84,148 KB
testcase_09 AC 98 ms
84,612 KB
testcase_10 AC 96 ms
83,864 KB
testcase_11 AC 300 ms
99,504 KB
testcase_12 AC 346 ms
102,076 KB
testcase_13 AC 393 ms
110,240 KB
testcase_14 AC 348 ms
103,844 KB
testcase_15 AC 320 ms
104,464 KB
testcase_16 AC 309 ms
102,868 KB
testcase_17 AC 361 ms
104,928 KB
testcase_18 AC 367 ms
104,928 KB
testcase_19 AC 342 ms
278,416 KB
testcase_20 AC 334 ms
104,612 KB
testcase_21 AC 304 ms
288,844 KB
testcase_22 AC 336 ms
100,996 KB
testcase_23 AC 294 ms
359,888 KB
testcase_24 AC 360 ms
104,228 KB
testcase_25 AC 368 ms
360,900 KB
testcase_26 AC 363 ms
105,080 KB
testcase_27 AC 297 ms
357,268 KB
testcase_28 AC 367 ms
356,916 KB
testcase_29 AC 382 ms
106,824 KB
testcase_30 AC 326 ms
361,752 KB
testcase_31 AC 385 ms
106,816 KB
testcase_32 AC 320 ms
360,796 KB
testcase_33 AC 346 ms
108,316 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 AC 34 ms
52,836 KB
testcase_55 AC 34 ms
315,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(area):
    next_area = list(area)
    selected_ind = [0] * len(area)
    if len(next_area) <= 1:
        return 0
    elif len(next_area) == 2:
        return 1
    while True:
        max_ind = next_area.index(max(next_area))
        min_ind = next_area.index(min(next_area))
        if max_ind == min_ind:
            break
        selected_ind[area.index(next_area[min_ind])] = 1
        next_area = next_area[0:min_ind] if max_ind < min_ind else next_area[min_ind + 1: len(next_area)]
    max_ind = area.index(max(area))
    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