結果

問題 No.871 かえるのうた
ユーザー shinichishinichi
提出日時 2021-09-22 17:19:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 686 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 98,304 KB
最終ジャッジ日時 2024-05-07 16:44:26
合計ジャッジ時間 4,619 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,760 KB
testcase_01 AC 34 ms
53,436 KB
testcase_02 AC 34 ms
53,504 KB
testcase_03 AC 34 ms
53,188 KB
testcase_04 AC 36 ms
53,380 KB
testcase_05 AC 36 ms
52,540 KB
testcase_06 AC 34 ms
53,764 KB
testcase_07 AC 34 ms
53,168 KB
testcase_08 AC 37 ms
58,884 KB
testcase_09 AC 38 ms
59,336 KB
testcase_10 AC 37 ms
58,772 KB
testcase_11 AC 38 ms
58,636 KB
testcase_12 AC 44 ms
67,672 KB
testcase_13 AC 39 ms
60,828 KB
testcase_14 AC 88 ms
93,388 KB
testcase_15 AC 83 ms
93,388 KB
testcase_16 AC 93 ms
94,220 KB
testcase_17 AC 83 ms
95,116 KB
testcase_18 AC 44 ms
68,576 KB
testcase_19 AC 88 ms
93,736 KB
testcase_20 AC 43 ms
66,536 KB
testcase_21 AC 65 ms
85,396 KB
testcase_22 AC 34 ms
52,096 KB
testcase_23 AC 35 ms
51,584 KB
testcase_24 AC 35 ms
52,224 KB
testcase_25 AC 41 ms
60,416 KB
testcase_26 AC 42 ms
64,000 KB
testcase_27 AC 39 ms
64,512 KB
testcase_28 AC 32 ms
52,224 KB
testcase_29 AC 58 ms
86,912 KB
testcase_30 AC 79 ms
97,900 KB
testcase_31 AC 38 ms
59,284 KB
testcase_32 AC 74 ms
94,864 KB
testcase_33 AC 82 ms
96,420 KB
testcase_34 AC 47 ms
70,664 KB
testcase_35 AC 63 ms
88,816 KB
testcase_36 AC 77 ms
98,304 KB
testcase_37 AC 64 ms
84,636 KB
testcase_38 AC 88 ms
95,104 KB
testcase_39 AC 85 ms
93,556 KB
testcase_40 AC 63 ms
88,504 KB
testcase_41 AC 35 ms
53,344 KB
testcase_42 AC 59 ms
86,932 KB
testcase_43 AC 34 ms
52,072 KB
testcase_44 AC 33 ms
53,368 KB
testcase_45 AC 39 ms
60,004 KB
testcase_46 AC 35 ms
53,372 KB
testcase_47 AC 33 ms
52,612 KB
testcase_48 AC 33 ms
52,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

left, right = K, K
left_range, right_range = X[K] - A[K], X[K] + A[K]
while True:
    update = False
    while left != 0 and X[left-1] >= left_range:
        left -= 1
        left_range = min(left_range, X[left] - A[left])
        right_range = max(right_range, X[left]+A[left])
        update = True
    while right != N-1 and X[right+1] <= right_range:
        right += 1
        left_range = min(left_range, X[right] - A[right])
        right_range = max(right_range, X[right] + A[right])
        update = True
    if not update:
        break
print(right - left + 1)

0