結果

問題 No.871 かえるのうた
ユーザー ntudantuda
提出日時 2024-05-22 19:16:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 489 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 98,704 KB
最終ジャッジ日時 2024-05-22 19:16:46
合計ジャッジ時間 4,722 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,256 KB
testcase_01 WA -
testcase_02 AC 31 ms
52,524 KB
testcase_03 WA -
testcase_04 AC 33 ms
53,412 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 37 ms
52,448 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 36 ms
58,536 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 79 ms
94,836 KB
testcase_18 AC 42 ms
68,212 KB
testcase_19 WA -
testcase_20 AC 43 ms
66,032 KB
testcase_21 WA -
testcase_22 AC 34 ms
52,760 KB
testcase_23 AC 31 ms
52,444 KB
testcase_24 AC 34 ms
52,184 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 58 ms
87,684 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 44 ms
70,344 KB
testcase_35 WA -
testcase_36 AC 73 ms
98,704 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 34 ms
53,128 KB
testcase_42 AC 64 ms
93,616 KB
testcase_43 AC 31 ms
53,108 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 37 ms
53,188 KB
testcase_47 AC 32 ms
52,500 KB
testcase_48 AC 32 ms
52,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
X = list(map(int, input().split()))
A = list(map(int, input().split()))
K -= 1
Q = [K]
lp = K
rp = K
li = K
ri = K
rlimit = K
ans = 0
while Q:
    x = Q.pop()
    if X[x] - A[x] < lp:
        lp = X[x] - A[x]
        while 0 < li and lp <= X[li - 1]:
            li -= 1
            Q.append(li)
    if rp < X[x] + A[x]:
        rp = X[x] + A[x]
        while ri < N - 1 and X[ri + 1] <= rp:
            ri += 1
            Q.append(ri)
print(ri - li + 1)
0