結果

問題 No.1031 いたずら好きなお姉ちゃん
ユーザー MNGOFMNGOF
提出日時 2020-04-26 23:12:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 746 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 97,612 KB
最終ジャッジ日時 2024-11-18 20:51:37
合計ジャッジ時間 140,703 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 521 ms
50,776 KB
testcase_01 AC 517 ms
92,824 KB
testcase_02 AC 522 ms
50,396 KB
testcase_03 AC 577 ms
93,416 KB
testcase_04 AC 580 ms
50,524 KB
testcase_05 AC 575 ms
93,224 KB
testcase_06 AC 579 ms
50,696 KB
testcase_07 AC 578 ms
92,972 KB
testcase_08 AC 578 ms
50,776 KB
testcase_09 AC 578 ms
92,648 KB
testcase_10 AC 576 ms
50,784 KB
testcase_11 AC 1,602 ms
94,440 KB
testcase_12 AC 1,621 ms
52,700 KB
testcase_13 AC 1,867 ms
97,612 KB
testcase_14 AC 1,656 ms
52,956 KB
testcase_15 AC 1,777 ms
97,200 KB
testcase_16 AC 1,607 ms
53,092 KB
testcase_17 AC 1,746 ms
96,884 KB
testcase_18 AC 1,708 ms
52,952 KB
testcase_19 AC 1,783 ms
97,272 KB
testcase_20 AC 1,858 ms
55,892 KB
testcase_21 AC 1,746 ms
53,212 KB
testcase_22 AC 1,581 ms
52,832 KB
testcase_23 AC 1,621 ms
53,204 KB
testcase_24 AC 1,791 ms
55,252 KB
testcase_25 AC 1,836 ms
55,388 KB
testcase_26 AC 1,762 ms
53,140 KB
testcase_27 AC 1,654 ms
52,828 KB
testcase_28 AC 1,850 ms
56,076 KB
testcase_29 AC 1,832 ms
56,052 KB
testcase_30 AC 1,842 ms
56,028 KB
testcase_31 AC 1,832 ms
56,000 KB
testcase_32 AC 1,852 ms
56,284 KB
testcase_33 AC 1,833 ms
56,276 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 532 ms
43,960 KB
testcase_55 AC 527 ms
93,144 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