結果

問題 No.1031 いたずら好きなお姉ちゃん
ユーザー MNGOFMNGOF
提出日時 2020-04-26 19:27:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 636 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 188,748 KB
最終ジャッジ日時 2024-11-17 19:40:01
合計ジャッジ時間 145,074 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 428 ms
51,024 KB
testcase_01 AC 434 ms
49,448 KB
testcase_02 AC 433 ms
49,708 KB
testcase_03 AC 494 ms
96,908 KB
testcase_04 AC 503 ms
49,704 KB
testcase_05 AC 500 ms
94,484 KB
testcase_06 AC 495 ms
49,328 KB
testcase_07 AC 495 ms
127,600 KB
testcase_08 AC 496 ms
49,320 KB
testcase_09 AC 499 ms
99,260 KB
testcase_10 AC 508 ms
49,588 KB
testcase_11 AC 1,773 ms
97,836 KB
testcase_12 AC 1,745 ms
50,984 KB
testcase_13 AC 2,085 ms
138,740 KB
testcase_14 AC 1,801 ms
51,500 KB
testcase_15 AC 1,930 ms
97,484 KB
testcase_16 AC 1,736 ms
51,376 KB
testcase_17 AC 1,988 ms
96,988 KB
testcase_18 AC 1,956 ms
51,880 KB
testcase_19 AC 2,194 ms
188,748 KB
testcase_20 AC 2,311 ms
54,312 KB
testcase_21 AC 2,100 ms
151,308 KB
testcase_22 AC 1,914 ms
51,624 KB
testcase_23 AC 1,793 ms
95,048 KB
testcase_24 AC 1,947 ms
53,808 KB
testcase_25 AC 2,062 ms
55,620 KB
testcase_26 AC 1,947 ms
53,548 KB
testcase_27 AC 1,928 ms
53,196 KB
testcase_28 AC 2,243 ms
54,308 KB
testcase_29 AC 2,119 ms
55,768 KB
testcase_30 AC 2,224 ms
54,568 KB
testcase_31 AC 2,299 ms
56,136 KB
testcase_32 AC 2,226 ms
54,836 KB
testcase_33 AC 2,056 ms
97,744 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 441 ms
44,108 KB
testcase_55 AC 440 ms
93,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


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

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


print(solve(input_np))
0