結果

問題 No.1031 いたずら好きなお姉ちゃん
ユーザー MNGOFMNGOF
提出日時 2020-04-27 00:20:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,172 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 49,276 KB
最終ジャッジ日時 2024-11-19 02:50:14
合計ジャッジ時間 118,621 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
17,696 KB
testcase_01 AC 31 ms
16,000 KB
testcase_02 AC 35 ms
15,872 KB
testcase_03 AC 66 ms
18,216 KB
testcase_04 AC 66 ms
16,640 KB
testcase_05 AC 64 ms
34,420 KB
testcase_06 AC 63 ms
16,640 KB
testcase_07 AC 63 ms
34,284 KB
testcase_08 AC 63 ms
16,640 KB
testcase_09 AC 65 ms
34,172 KB
testcase_10 AC 65 ms
16,640 KB
testcase_11 AC 910 ms
44,924 KB
testcase_12 AC 928 ms
29,184 KB
testcase_13 AC 1,138 ms
49,276 KB
testcase_14 AC 984 ms
29,328 KB
testcase_15 AC 1,154 ms
33,644 KB
testcase_16 AC 944 ms
27,196 KB
testcase_17 AC 1,052 ms
31,016 KB
testcase_18 AC 1,053 ms
29,400 KB
testcase_19 AC 1,135 ms
31,616 KB
testcase_20 AC 1,159 ms
30,000 KB
testcase_21 AC 1,055 ms
31,952 KB
testcase_22 AC 902 ms
27,436 KB
testcase_23 AC 997 ms
33,344 KB
testcase_24 AC 1,086 ms
28,304 KB
testcase_25 AC 1,126 ms
31,492 KB
testcase_26 AC 1,037 ms
29,432 KB
testcase_27 AC 951 ms
29,844 KB
testcase_28 AC 1,114 ms
47,132 KB
testcase_29 AC 1,210 ms
32,096 KB
testcase_30 AC 1,161 ms
48,404 KB
testcase_31 AC 1,198 ms
30,816 KB
testcase_32 AC 1,135 ms
47,316 KB
testcase_33 AC 1,225 ms
33,244 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 32 ms
10,752 KB
testcase_55 AC 30 ms
33,648 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