結果

問題 No.871 かえるのうた
ユーザー AT274_AT274_
提出日時 2019-10-14 21:57:09
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
MLE  
実行時間 -
コード長 555 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 590,804 KB
最終ジャッジ日時 2024-12-24 14:53:34
合計ジャッジ時間 26,291 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
15,744 KB
testcase_01 MLE -
testcase_02 AC 36 ms
15,744 KB
testcase_03 AC 35 ms
212,264 KB
testcase_04 AC 34 ms
15,744 KB
testcase_05 AC 37 ms
266,504 KB
testcase_06 WA -
testcase_07 AC 33 ms
139,332 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 54 ms
10,880 KB
testcase_11 AC 34 ms
10,624 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 116 ms
27,680 KB
testcase_15 WA -
testcase_16 TLE -
testcase_17 AC 115 ms
26,120 KB
testcase_18 AC 47 ms
12,964 KB
testcase_19 WA -
testcase_20 TLE -
testcase_21 WA -
testcase_22 AC 35 ms
10,496 KB
testcase_23 AC 34 ms
10,496 KB
testcase_24 AC 34 ms
10,624 KB
testcase_25 WA -
testcase_26 TLE -
testcase_27 WA -
testcase_28 AC 34 ms
10,624 KB
testcase_29 AC 72 ms
17,592 KB
testcase_30 TLE -
testcase_31 AC 37 ms
11,008 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 54 ms
14,468 KB
testcase_35 WA -
testcase_36 AC 97 ms
21,836 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 214 ms
17,700 KB
testcase_41 AC 35 ms
10,624 KB
testcase_42 AC 376 ms
17,704 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 39 ms
10,752 KB
testcase_46 AC 35 ms
10,624 KB
testcase_47 AC 34 ms
10,624 KB
testcase_48 AC 33 ms
212,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right
N, K = map(int, input().split())
X = list(map(int, input().split())) + [10 ** 18]
A = list(map(int, input().split())) + [0]


visited = [0] * N
stack = [K - 1]

while stack:
    fr = stack.pop()
    visited[fr] = 1

    l = bisect_left(X, X[fr] - A[fr])
    r = bisect_right(X, X[fr] + A[fr])

    for to in range(l, fr):
        if visited[to]:
            break
        stack.append(to)

    for to in range(fr + 1, r):
        if visited[to]:
            break
        stack.append(to)

print(sum(visited))
0