結果

問題 No.871 かえるのうた
ユーザー ああいいああいい
提出日時 2022-05-29 18:00:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 100,392 KB
最終ジャッジ日時 2024-11-30 11:09:04
合計ジャッジ時間 4,750 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,280 KB
testcase_01 AC 39 ms
52,468 KB
testcase_02 AC 38 ms
53,024 KB
testcase_03 AC 38 ms
52,516 KB
testcase_04 AC 38 ms
52,196 KB
testcase_05 AC 39 ms
52,404 KB
testcase_06 AC 38 ms
53,132 KB
testcase_07 AC 38 ms
52,616 KB
testcase_08 AC 41 ms
59,216 KB
testcase_09 AC 43 ms
59,092 KB
testcase_10 AC 43 ms
58,668 KB
testcase_11 AC 41 ms
58,456 KB
testcase_12 AC 50 ms
67,284 KB
testcase_13 AC 43 ms
60,532 KB
testcase_14 AC 96 ms
93,156 KB
testcase_15 AC 95 ms
93,496 KB
testcase_16 AC 118 ms
100,392 KB
testcase_17 AC 91 ms
95,072 KB
testcase_18 AC 50 ms
68,192 KB
testcase_19 AC 106 ms
93,964 KB
testcase_20 AC 52 ms
65,420 KB
testcase_21 AC 78 ms
85,652 KB
testcase_22 AC 38 ms
52,868 KB
testcase_23 AC 40 ms
52,388 KB
testcase_24 AC 38 ms
53,244 KB
testcase_25 AC 49 ms
62,080 KB
testcase_26 AC 53 ms
66,388 KB
testcase_27 AC 47 ms
64,996 KB
testcase_28 AC 38 ms
53,536 KB
testcase_29 AC 67 ms
87,220 KB
testcase_30 AC 96 ms
98,020 KB
testcase_31 AC 43 ms
60,412 KB
testcase_32 AC 90 ms
94,912 KB
testcase_33 AC 94 ms
96,192 KB
testcase_34 AC 52 ms
70,504 KB
testcase_35 AC 71 ms
88,540 KB
testcase_36 AC 85 ms
98,640 KB
testcase_37 AC 82 ms
88,040 KB
testcase_38 AC 111 ms
95,764 KB
testcase_39 AC 106 ms
93,504 KB
testcase_40 AC 76 ms
89,148 KB
testcase_41 AC 37 ms
51,824 KB
testcase_42 AC 75 ms
93,480 KB
testcase_43 AC 38 ms
51,880 KB
testcase_44 AC 38 ms
52,636 KB
testcase_45 AC 47 ms
61,256 KB
testcase_46 AC 38 ms
52,152 KB
testcase_47 AC 37 ms
53,756 KB
testcase_48 AC 38 ms
52,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
X = list(map(int,input().split()))
A = list(map(int,input().split()))

K -= 1
right = K + 1
left = K - 1
stack = [K]
ans = 0
while stack:
    now = stack.pop()
    ans += 1
    r = X[now] + A[now]
    l = X[now] - A[now]
    while right < N and X[right] <= r:
        stack.append(right)
        right += 1
    while left >= 0 and X[left] >= l:
        stack.append(left)
        left -= 1
print(ans)
0