結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 458 ms
93,624 KB
testcase_01 AC 455 ms
50,560 KB
testcase_02 AC 454 ms
50,392 KB
testcase_03 AC 505 ms
93,704 KB
testcase_04 AC 500 ms
50,648 KB
testcase_05 AC 499 ms
93,292 KB
testcase_06 AC 498 ms
50,648 KB
testcase_07 AC 506 ms
93,296 KB
testcase_08 AC 505 ms
50,744 KB
testcase_09 AC 504 ms
93,032 KB
testcase_10 AC 500 ms
50,904 KB
testcase_11 AC 1,461 ms
95,480 KB
testcase_12 AC 1,452 ms
53,300 KB
testcase_13 AC 1,686 ms
55,904 KB
testcase_14 AC 1,598 ms
53,080 KB
testcase_15 AC 1,603 ms
55,504 KB
testcase_16 AC 1,457 ms
53,088 KB
testcase_17 AC 1,601 ms
55,508 KB
testcase_18 AC 1,579 ms
53,872 KB
testcase_19 AC 1,611 ms
55,776 KB
testcase_20 AC 1,682 ms
56,156 KB
testcase_21 AC 1,549 ms
53,596 KB
testcase_22 AC 1,423 ms
52,948 KB
testcase_23 AC 1,470 ms
53,084 KB
testcase_24 AC 1,618 ms
55,264 KB
testcase_25 AC 1,660 ms
56,152 KB
testcase_26 AC 1,567 ms
94,832 KB
testcase_27 AC 1,492 ms
53,336 KB
testcase_28 AC 1,680 ms
99,044 KB
testcase_29 AC 1,811 ms
56,660 KB
testcase_30 AC 1,659 ms
97,892 KB
testcase_31 AC 1,697 ms
56,284 KB
testcase_32 AC 1,678 ms
98,668 KB
testcase_33 AC 1,674 ms
56,028 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 457 ms
44,084 KB
testcase_55 AC 468 ms
93,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def solve(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 += solve(area[0:max_ind])

    if (area.shape[0] - max_ind) == 3:
        count += 1
    elif (area.shape[0] - max_ind) > 3:
        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