結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 416 ms
92,888 KB
testcase_01 AC 419 ms
49,192 KB
testcase_02 AC 416 ms
48,936 KB
testcase_03 AC 479 ms
98,412 KB
testcase_04 AC 476 ms
48,936 KB
testcase_05 AC 491 ms
94,692 KB
testcase_06 AC 553 ms
49,312 KB
testcase_07 AC 499 ms
129,444 KB
testcase_08 AC 477 ms
49,328 KB
testcase_09 AC 476 ms
94,784 KB
testcase_10 AC 478 ms
49,320 KB
testcase_11 AC 1,707 ms
53,452 KB
testcase_12 AC 1,694 ms
50,852 KB
testcase_13 AC 1,988 ms
55,764 KB
testcase_14 AC 1,748 ms
51,492 KB
testcase_15 AC 1,928 ms
96,852 KB
testcase_16 AC 1,676 ms
51,364 KB
testcase_17 AC 1,921 ms
55,624 KB
testcase_18 AC 1,853 ms
51,880 KB
testcase_19 AC 1,913 ms
55,628 KB
testcase_20 AC 1,989 ms
54,056 KB
testcase_21 AC 1,853 ms
98,768 KB
testcase_22 AC 1,681 ms
51,624 KB
testcase_23 AC 1,733 ms
94,156 KB
testcase_24 AC 1,933 ms
53,928 KB
testcase_25 AC 1,984 ms
97,808 KB
testcase_26 AC 1,842 ms
53,160 KB
testcase_27 AC 1,781 ms
95,564 KB
testcase_28 AC 1,973 ms
56,020 KB
testcase_29 AC 1,977 ms
54,836 KB
testcase_30 AC 1,989 ms
56,440 KB
testcase_31 AC 1,970 ms
54,692 KB
testcase_32 AC 1,962 ms
56,660 KB
testcase_33 AC 2,003 ms
49,072 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 415 ms
43,692 KB
testcase_55 AC 414 ms
93,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def solve(area):
    next_area = np.array(area)
    if next_area.shape[0] == 0:
        return 0
    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)
    count += solve(area[0:max_ind])
    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