結果

問題 No.1031 いたずら好きなお姉ちゃん
ユーザー MNGOFMNGOF
提出日時 2020-04-26 22:53:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 747 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 97,640 KB
最終ジャッジ日時 2024-11-18 19:56:51
合計ジャッジ時間 142,544 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 536 ms
93,288 KB
testcase_01 AC 532 ms
48,944 KB
testcase_02 AC 532 ms
48,952 KB
testcase_03 AC 582 ms
92,788 KB
testcase_04 AC 590 ms
48,952 KB
testcase_05 AC 591 ms
50,776 KB
testcase_06 AC 576 ms
49,200 KB
testcase_07 AC 586 ms
50,784 KB
testcase_08 AC 580 ms
92,520 KB
testcase_09 AC 587 ms
49,208 KB
testcase_10 AC 575 ms
92,260 KB
testcase_11 AC 1,634 ms
51,776 KB
testcase_12 AC 1,626 ms
94,572 KB
testcase_13 AC 1,871 ms
54,324 KB
testcase_14 AC 1,665 ms
95,352 KB
testcase_15 AC 1,775 ms
53,940 KB
testcase_16 AC 1,602 ms
94,928 KB
testcase_17 AC 1,797 ms
54,204 KB
testcase_18 AC 1,722 ms
95,336 KB
testcase_19 AC 1,801 ms
53,684 KB
testcase_20 AC 1,841 ms
97,640 KB
testcase_21 AC 1,723 ms
51,900 KB
testcase_22 AC 1,625 ms
53,088 KB
testcase_23 AC 1,655 ms
51,124 KB
testcase_24 AC 1,797 ms
97,380 KB
testcase_25 AC 1,849 ms
54,200 KB
testcase_26 AC 1,789 ms
53,456 KB
testcase_27 AC 1,680 ms
51,392 KB
testcase_28 AC 1,846 ms
56,288 KB
testcase_29 AC 1,868 ms
54,196 KB
testcase_30 AC 1,864 ms
56,404 KB
testcase_31 AC 1,862 ms
54,452 KB
testcase_32 AC 1,842 ms
55,892 KB
testcase_33 AC 1,852 ms
54,964 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 535 ms
43,956 KB
testcase_55 AC 538 ms
93,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def solve2(area):
    next_area = area
    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 += solve2(area[0:max_ind])

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

    return count
    

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

print(solve2(data))
0