結果

問題 No.1031 いたずら好きなお姉ちゃん
ユーザー MNGOFMNGOF
提出日時 2020-04-26 20:24:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 845 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 98,668 KB
最終ジャッジ日時 2024-11-18 07:46:45
合計ジャッジ時間 141,509 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 535 ms
50,776 KB
testcase_01 AC 540 ms
51,164 KB
testcase_02 AC 541 ms
51,152 KB
testcase_03 AC 593 ms
93,020 KB
testcase_04 AC 603 ms
50,772 KB
testcase_05 AC 600 ms
51,020 KB
testcase_06 AC 594 ms
51,152 KB
testcase_07 AC 593 ms
51,412 KB
testcase_08 AC 589 ms
93,296 KB
testcase_09 AC 591 ms
50,892 KB
testcase_10 AC 587 ms
93,092 KB
testcase_11 AC 1,640 ms
54,364 KB
testcase_12 AC 1,644 ms
96,220 KB
testcase_13 AC 1,869 ms
55,568 KB
testcase_14 AC 1,677 ms
96,744 KB
testcase_15 AC 1,791 ms
55,252 KB
testcase_16 AC 1,599 ms
96,736 KB
testcase_17 AC 1,790 ms
55,248 KB
testcase_18 AC 1,737 ms
97,384 KB
testcase_19 AC 1,794 ms
55,508 KB
testcase_20 AC 1,857 ms
97,808 KB
testcase_21 AC 1,729 ms
54,732 KB
testcase_22 AC 1,613 ms
96,484 KB
testcase_23 AC 1,644 ms
54,736 KB
testcase_24 AC 1,802 ms
98,016 KB
testcase_25 AC 1,864 ms
55,512 KB
testcase_26 AC 1,761 ms
96,868 KB
testcase_27 AC 1,687 ms
54,732 KB
testcase_28 AC 1,871 ms
98,668 KB
testcase_29 AC 1,859 ms
56,276 KB
testcase_30 AC 1,848 ms
97,760 KB
testcase_31 AC 1,853 ms
56,652 KB
testcase_32 AC 1,863 ms
98,280 KB
testcase_33 AC 1,889 ms
55,892 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 527 ms
44,592 KB
testcase_55 AC 526 ms
93,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def solve(area):
    next_area = area
    if next_area.shape[0] <= 1:
        return 0
    elif next_area.shape[0] == 2:
        return 1
    count = 0
    while True:
        max_ind = np.argmax(next_area)
        min_ind = np.argmin(next_area)
        if max_ind == min_ind:
            break
        next_area = next_area[0:min_ind] if max_ind < min_ind else next_area[min_ind + 1: next_area.shape[0]]
        count += 1
    max_ind = np.argmax(area)
    if max_ind == 2:
        count += 1
    elif max_ind > 2:
        count += solve(area[0:max_ind])

    if (area.shape[0] - max_ind) == 3:
        count += 1
    elif (area.shape[0] - max_ind) > 3:
        count += solve(area[max_ind + 1: area.shape[0]])
    return count

N = int(input())
input_np = np.array(input().split()).astype(np.int32)

print(solve(input_np))
0