結果

問題 No.1031 いたずら好きなお姉ちゃん
ユーザー MNGOFMNGOF
提出日時 2020-04-27 00:21:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,172 bytes
コンパイル時間 592 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 364,152 KB
最終ジャッジ日時 2024-11-19 02:57:41
合計ジャッジ時間 102,598 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,216 KB
testcase_01 AC 40 ms
60,304 KB
testcase_02 AC 41 ms
57,216 KB
testcase_03 AC 109 ms
341,916 KB
testcase_04 AC 126 ms
83,200 KB
testcase_05 AC 118 ms
226,800 KB
testcase_06 AC 115 ms
82,560 KB
testcase_07 AC 119 ms
342,972 KB
testcase_08 AC 115 ms
82,432 KB
testcase_09 AC 113 ms
341,644 KB
testcase_10 AC 106 ms
82,304 KB
testcase_11 AC 328 ms
355,684 KB
testcase_12 AC 382 ms
100,788 KB
testcase_13 AC 447 ms
339,756 KB
testcase_14 AC 400 ms
102,452 KB
testcase_15 AC 361 ms
360,004 KB
testcase_16 AC 351 ms
100,468 KB
testcase_17 AC 400 ms
360,496 KB
testcase_18 AC 412 ms
102,272 KB
testcase_19 AC 372 ms
357,888 KB
testcase_20 AC 371 ms
103,040 KB
testcase_21 AC 352 ms
259,560 KB
testcase_22 AC 382 ms
99,100 KB
testcase_23 AC 340 ms
362,668 KB
testcase_24 AC 417 ms
102,852 KB
testcase_25 AC 433 ms
360,724 KB
testcase_26 AC 429 ms
102,924 KB
testcase_27 AC 339 ms
356,120 KB
testcase_28 AC 425 ms
102,640 KB
testcase_29 AC 428 ms
364,152 KB
testcase_30 AC 369 ms
104,960 KB
testcase_31 AC 434 ms
359,604 KB
testcase_32 AC 364 ms
103,296 KB
testcase_33 AC 397 ms
363,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 40 ms
52,480 KB
testcase_55 AC 39 ms
315,412 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