結果

問題 No.1031 いたずら好きなお姉ちゃん
ユーザー MNGOFMNGOF
提出日時 2020-04-27 00:23:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 1,095 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 626,068 KB
最終ジャッジ日時 2024-11-19 03:00:30
合計ジャッジ時間 81,041 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,572 KB
testcase_01 MLE -
testcase_02 AC 30 ms
17,572 KB
testcase_03 AC 47 ms
510,676 KB
testcase_04 AC 46 ms
18,212 KB
testcase_05 MLE -
testcase_06 AC 45 ms
17,956 KB
testcase_07 MLE -
testcase_08 AC 45 ms
18,084 KB
testcase_09 MLE -
testcase_10 AC 45 ms
18,208 KB
testcase_11 MLE -
testcase_12 AC 384 ms
30,752 KB
testcase_13 MLE -
testcase_14 AC 395 ms
30,372 KB
testcase_15 MLE -
testcase_16 AC 381 ms
28,812 KB
testcase_17 MLE -
testcase_18 AC 413 ms
30,832 KB
testcase_19 AC 439 ms
497,320 KB
testcase_20 AC 468 ms
31,312 KB
testcase_21 MLE -
testcase_22 AC 371 ms
28,816 KB
testcase_23 MLE -
testcase_24 AC 437 ms
29,932 KB
testcase_25 MLE -
testcase_26 AC 426 ms
29,548 KB
testcase_27 MLE -
testcase_28 AC 453 ms
30,496 KB
testcase_29 AC 472 ms
26,836 KB
testcase_30 AC 464 ms
25,168 KB
testcase_31 AC 465 ms
25,468 KB
testcase_32 AC 448 ms
24,312 KB
testcase_33 AC 478 ms
27,736 KB
testcase_34 AC 89 ms
22,352 KB
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 RE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 AC 87 ms
21,372 KB
testcase_52 AC 84 ms
21,248 KB
testcase_53 AC 85 ms
21,372 KB
testcase_54 AC 30 ms
10,624 KB
testcase_55 MLE -
権限があれば一括ダウンロードができます

ソースコード

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