結果

問題 No.1031 いたずら好きなお姉ちゃん
ユーザー MNGOFMNGOF
提出日時 2020-04-26 20:15:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 635 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 179,492 KB
最終ジャッジ日時 2024-11-17 22:56:49
合計ジャッジ時間 144,948 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 473 ms
49,840 KB
testcase_01 AC 471 ms
93,264 KB
testcase_02 AC 462 ms
49,576 KB
testcase_03 AC 528 ms
97,288 KB
testcase_04 AC 544 ms
49,204 KB
testcase_05 AC 537 ms
94,612 KB
testcase_06 AC 524 ms
51,148 KB
testcase_07 AC 587 ms
123,528 KB
testcase_08 AC 518 ms
51,660 KB
testcase_09 AC 527 ms
50,756 KB
testcase_10 AC 527 ms
51,408 KB
testcase_11 AC 1,725 ms
53,340 KB
testcase_12 AC 1,754 ms
134,024 KB
testcase_13 AC 1,981 ms
55,496 KB
testcase_14 AC 1,789 ms
95,184 KB
testcase_15 AC 1,882 ms
55,504 KB
testcase_16 AC 1,695 ms
94,548 KB
testcase_17 AC 1,882 ms
55,252 KB
testcase_18 AC 1,842 ms
179,492 KB
testcase_19 AC 1,961 ms
55,372 KB
testcase_20 AC 2,058 ms
153,112 KB
testcase_21 AC 1,913 ms
53,076 KB
testcase_22 AC 1,699 ms
94,932 KB
testcase_23 AC 1,734 ms
53,076 KB
testcase_24 AC 1,901 ms
98,316 KB
testcase_25 AC 2,038 ms
55,512 KB
testcase_26 AC 1,899 ms
97,504 KB
testcase_27 AC 1,869 ms
53,084 KB
testcase_28 AC 2,022 ms
98,264 KB
testcase_29 AC 1,981 ms
56,156 KB
testcase_30 AC 2,055 ms
99,188 KB
testcase_31 AC 1,973 ms
98,268 KB
testcase_32 AC 1,974 ms
56,008 KB
testcase_33 AC 2,009 ms
55,948 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 469 ms
44,072 KB
testcase_55 AC 471 ms
92,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


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