結果

問題 No.871 かえるのうた
ユーザー rlangevinrlangevin
提出日時 2023-01-18 01:01:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 98,708 KB
最終ジャッジ日時 2024-05-07 16:49:26
合計ジャッジ時間 5,289 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
70,784 KB
testcase_01 AC 50 ms
70,784 KB
testcase_02 AC 54 ms
70,656 KB
testcase_03 AC 51 ms
71,040 KB
testcase_04 AC 53 ms
70,528 KB
testcase_05 AC 51 ms
70,528 KB
testcase_06 AC 52 ms
70,912 KB
testcase_07 AC 50 ms
70,528 KB
testcase_08 AC 53 ms
73,344 KB
testcase_09 AC 52 ms
73,728 KB
testcase_10 AC 51 ms
72,320 KB
testcase_11 AC 53 ms
72,192 KB
testcase_12 AC 63 ms
79,252 KB
testcase_13 AC 53 ms
73,984 KB
testcase_14 AC 107 ms
95,368 KB
testcase_15 AC 103 ms
95,784 KB
testcase_16 AC 130 ms
98,708 KB
testcase_17 AC 97 ms
94,720 KB
testcase_18 AC 61 ms
79,360 KB
testcase_19 AC 116 ms
97,180 KB
testcase_20 AC 69 ms
76,672 KB
testcase_21 AC 95 ms
87,552 KB
testcase_22 AC 51 ms
71,040 KB
testcase_23 AC 51 ms
70,912 KB
testcase_24 AC 52 ms
70,528 KB
testcase_25 AC 63 ms
75,904 KB
testcase_26 AC 66 ms
76,652 KB
testcase_27 AC 61 ms
77,440 KB
testcase_28 AC 53 ms
70,784 KB
testcase_29 AC 82 ms
97,536 KB
testcase_30 AC 104 ms
97,408 KB
testcase_31 AC 52 ms
72,576 KB
testcase_32 AC 114 ms
97,664 KB
testcase_33 AC 101 ms
95,744 KB
testcase_34 AC 64 ms
81,408 KB
testcase_35 AC 81 ms
95,420 KB
testcase_36 AC 92 ms
96,256 KB
testcase_37 AC 91 ms
89,856 KB
testcase_38 AC 125 ms
97,292 KB
testcase_39 AC 117 ms
96,456 KB
testcase_40 AC 95 ms
96,512 KB
testcase_41 AC 51 ms
70,528 KB
testcase_42 AC 87 ms
96,384 KB
testcase_43 AC 52 ms
70,912 KB
testcase_44 AC 53 ms
70,912 KB
testcase_45 AC 64 ms
76,216 KB
testcase_46 AC 55 ms
70,912 KB
testcase_47 AC 50 ms
70,528 KB
testcase_48 AC 51 ms
70,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N, K = map(int, input().split())
inf = 10 ** 18
X = [-inf] + list(map(int, input().split())) + [inf]
A = [0] + list(map(int, input().split())) + [0]

Q = deque([K])
left = inf
right = -inf
for i in range(202020):
    s = Q[0]
    left = min(left, X[s] - A[s])
    right = max(right, X[s] + A[s])
    if X[s - 1] >= left:
        Q.appendleft(s - 1)
    b = Q[-1]
    left = min(left, X[b] - A[b])
    right = max(right, X[b] + A[b])
    if X[b + 1] <= right:
        Q.append(b + 1)
print(len(Q))
0