結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,456 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 37 ms
51,584 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 41 ms
58,624 KB
testcase_09 AC 42 ms
59,392 KB
testcase_10 AC 41 ms
58,240 KB
testcase_11 AC 41 ms
58,240 KB
testcase_12 AC 50 ms
67,712 KB
testcase_13 AC 42 ms
60,032 KB
testcase_14 AC 95 ms
93,184 KB
testcase_15 AC 94 ms
93,184 KB
testcase_16 AC 118 ms
100,704 KB
testcase_17 AC 91 ms
95,232 KB
testcase_18 AC 49 ms
67,840 KB
testcase_19 AC 105 ms
93,920 KB
testcase_20 AC 57 ms
65,536 KB
testcase_21 AC 88 ms
85,632 KB
testcase_22 AC 38 ms
52,480 KB
testcase_23 AC 39 ms
52,096 KB
testcase_24 AC 38 ms
51,584 KB
testcase_25 AC 48 ms
61,696 KB
testcase_26 AC 51 ms
66,176 KB
testcase_27 AC 46 ms
64,384 KB
testcase_28 AC 38 ms
51,712 KB
testcase_29 AC 65 ms
87,168 KB
testcase_30 AC 95 ms
98,176 KB
testcase_31 AC 40 ms
59,008 KB
testcase_32 AC 89 ms
94,976 KB
testcase_33 AC 95 ms
96,512 KB
testcase_34 AC 52 ms
70,656 KB
testcase_35 AC 69 ms
88,448 KB
testcase_36 AC 92 ms
98,816 KB
testcase_37 AC 80 ms
87,808 KB
testcase_38 AC 109 ms
95,936 KB
testcase_39 AC 102 ms
93,464 KB
testcase_40 AC 77 ms
88,832 KB
testcase_41 AC 36 ms
51,840 KB
testcase_42 AC 73 ms
93,380 KB
testcase_43 AC 37 ms
52,096 KB
testcase_44 AC 37 ms
51,840 KB
testcase_45 AC 47 ms
61,696 KB
testcase_46 AC 35 ms
51,968 KB
testcase_47 AC 37 ms
51,712 KB
testcase_48 AC 37 ms
51,712 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