結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 418 ms
92,772 KB
testcase_01 AC 419 ms
49,456 KB
testcase_02 AC 416 ms
49,712 KB
testcase_03 AC 461 ms
51,024 KB
testcase_04 AC 466 ms
49,076 KB
testcase_05 AC 466 ms
50,644 KB
testcase_06 AC 487 ms
49,456 KB
testcase_07 AC 464 ms
50,652 KB
testcase_08 AC 466 ms
49,584 KB
testcase_09 AC 465 ms
51,284 KB
testcase_10 AC 478 ms
49,336 KB
testcase_11 AC 1,410 ms
54,932 KB
testcase_12 AC 1,374 ms
53,300 KB
testcase_13 AC 1,709 ms
55,884 KB
testcase_14 AC 1,402 ms
53,432 KB
testcase_15 AC 1,510 ms
55,760 KB
testcase_16 AC 1,363 ms
53,164 KB
testcase_17 AC 1,521 ms
55,632 KB
testcase_18 AC 1,480 ms
53,932 KB
testcase_19 AC 1,562 ms
55,000 KB
testcase_20 AC 1,670 ms
54,324 KB
testcase_21 AC 1,491 ms
55,500 KB
testcase_22 AC 1,352 ms
53,036 KB
testcase_23 AC 1,414 ms
54,744 KB
testcase_24 AC 1,551 ms
54,196 KB
testcase_25 AC 1,590 ms
99,564 KB
testcase_26 AC 1,502 ms
53,432 KB
testcase_27 AC 1,432 ms
97,112 KB
testcase_28 AC 1,582 ms
54,956 KB
testcase_29 AC 1,572 ms
99,040 KB
testcase_30 AC 1,589 ms
54,964 KB
testcase_31 AC 1,615 ms
97,448 KB
testcase_32 AC 1,606 ms
54,184 KB
testcase_33 AC 1,608 ms
97,820 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 429 ms
43,704 KB
testcase_55 AC 435 ms
92,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


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