結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 496 ms
49,588 KB
testcase_01 AC 510 ms
44,336 KB
testcase_02 AC 506 ms
43,960 KB
testcase_03 AC 557 ms
44,216 KB
testcase_04 AC 558 ms
44,220 KB
testcase_05 AC 557 ms
43,824 KB
testcase_06 AC 557 ms
43,700 KB
testcase_07 AC 559 ms
43,700 KB
testcase_08 AC 551 ms
44,092 KB
testcase_09 AC 559 ms
43,700 KB
testcase_10 AC 559 ms
43,760 KB
testcase_11 AC 1,603 ms
45,876 KB
testcase_12 AC 1,602 ms
46,136 KB
testcase_13 AC 1,866 ms
48,700 KB
testcase_14 AC 1,642 ms
46,264 KB
testcase_15 AC 1,749 ms
48,572 KB
testcase_16 AC 1,571 ms
45,880 KB
testcase_17 AC 1,732 ms
48,564 KB
testcase_18 AC 1,705 ms
46,632 KB
testcase_19 AC 1,823 ms
48,696 KB
testcase_20 AC 1,809 ms
48,956 KB
testcase_21 AC 1,710 ms
46,400 KB
testcase_22 AC 1,554 ms
46,132 KB
testcase_23 AC 1,595 ms
46,264 KB
testcase_24 AC 1,745 ms
48,308 KB
testcase_25 AC 1,796 ms
48,956 KB
testcase_26 AC 1,703 ms
46,388 KB
testcase_27 AC 1,627 ms
46,384 KB
testcase_28 AC 1,779 ms
49,204 KB
testcase_29 AC 1,795 ms
49,084 KB
testcase_30 AC 1,777 ms
49,456 KB
testcase_31 AC 1,793 ms
49,332 KB
testcase_32 AC 1,808 ms
49,724 KB
testcase_33 AC 1,804 ms
49,348 KB
testcase_34 TLE -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
権限があれば一括ダウンロードができます

ソースコード

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