結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 487 ms
49,744 KB
testcase_01 AC 484 ms
91,704 KB
testcase_02 AC 482 ms
49,492 KB
testcase_03 AC 2,433 ms
91,828 KB
testcase_04 AC 2,458 ms
49,752 KB
testcase_05 AC 2,350 ms
92,840 KB
testcase_06 AC 2,430 ms
49,872 KB
testcase_07 AC 2,419 ms
91,564 KB
testcase_08 AC 2,370 ms
49,488 KB
testcase_09 AC 2,365 ms
92,964 KB
testcase_10 AC 2,416 ms
49,624 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
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 474 ms
43,736 KB
testcase_55 AC 479 ms
99,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


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

log = []
for i in range(N - 1):
    all_max = np.max(input_np[i:N])
    all_min = np.min(input_np[i:N])
    tmp_max = input_np[i] if input_np[i] > input_np[i+1] else input_np[i+1]
    tmp_min = input_np[i] if input_np[i] <= input_np[i+1] else input_np[i+1]
    tmp_log = []
    if [tmp_min, tmp_max] not in log:
        tmp_log.append([tmp_min, tmp_max])
        for k in range(i+2, N):
            if tmp_max < input_np[k]:
                tmp_max = input_np[k]
                if [tmp_min, tmp_max] in log:
                    break
                tmp_log.append([tmp_min, tmp_max])
            elif tmp_min > input_np[k]:
                tmp_min = input_np[k]
                if [tmp_min, tmp_max] in log:
                    break
                tmp_log.append([tmp_min, tmp_max])
            if (all_max == tmp_max) and (all_min == tmp_min):
                break
    for tmp_value in tmp_log:
        log.append(tmp_value)
print(len(log))
0