結果

問題 No.871 かえるのうた
ユーザー rlangevinrlangevin
提出日時 2023-01-18 00:58:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 518 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 98,748 KB
最終ジャッジ日時 2024-06-11 04:09:46
合計ジャッジ時間 6,954 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,248 KB
testcase_01 AC 44 ms
53,632 KB
testcase_02 AC 43 ms
53,632 KB
testcase_03 AC 44 ms
53,376 KB
testcase_04 AC 44 ms
53,888 KB
testcase_05 AC 44 ms
53,376 KB
testcase_06 AC 44 ms
53,632 KB
testcase_07 AC 50 ms
53,760 KB
testcase_08 AC 62 ms
64,000 KB
testcase_09 AC 62 ms
64,128 KB
testcase_10 AC 51 ms
60,544 KB
testcase_11 AC 55 ms
62,592 KB
testcase_12 AC 65 ms
73,344 KB
testcase_13 AC 56 ms
64,384 KB
testcase_14 AC 119 ms
95,616 KB
testcase_15 AC 112 ms
95,580 KB
testcase_16 AC 140 ms
98,748 KB
testcase_17 AC 113 ms
95,280 KB
testcase_18 AC 66 ms
74,368 KB
testcase_19 AC 127 ms
96,828 KB
testcase_20 AC 69 ms
71,552 KB
testcase_21 AC 102 ms
87,936 KB
testcase_22 AC 44 ms
53,632 KB
testcase_23 AC 45 ms
53,760 KB
testcase_24 AC 44 ms
53,632 KB
testcase_25 AC 59 ms
64,896 KB
testcase_26 AC 64 ms
69,760 KB
testcase_27 AC 62 ms
70,784 KB
testcase_28 AC 44 ms
53,632 KB
testcase_29 AC 92 ms
97,408 KB
testcase_30 AC 110 ms
97,408 KB
testcase_31 AC 52 ms
63,456 KB
testcase_32 AC 114 ms
97,408 KB
testcase_33 AC 107 ms
95,968 KB
testcase_34 AC 67 ms
77,568 KB
testcase_35 AC 91 ms
95,104 KB
testcase_36 AC 101 ms
96,256 KB
testcase_37 AC 100 ms
89,984 KB
testcase_38 AC 157 ms
97,684 KB
testcase_39 AC 125 ms
94,332 KB
testcase_40 AC 104 ms
96,768 KB
testcase_41 AC 43 ms
53,352 KB
testcase_42 AC 92 ms
96,640 KB
testcase_43 AC 43 ms
53,632 KB
testcase_44 WA -
testcase_45 AC 56 ms
62,976 KB
testcase_46 AC 44 ms
53,504 KB
testcase_47 AC 45 ms
53,504 KB
testcase_48 AC 45 ms
53,888 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(N):
    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