結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
52,100 KB
testcase_02 AC 43 ms
51,852 KB
testcase_03 AC 40 ms
52,128 KB
testcase_04 AC 40 ms
51,912 KB
testcase_05 AC 40 ms
52,384 KB
testcase_06 AC 40 ms
52,152 KB
testcase_07 AC 39 ms
52,188 KB
testcase_08 AC 44 ms
59,104 KB
testcase_09 AC 43 ms
59,416 KB
testcase_10 AC 45 ms
58,540 KB
testcase_11 AC 46 ms
58,248 KB
testcase_12 AC 50 ms
67,308 KB
testcase_13 AC 44 ms
60,172 KB
testcase_14 AC 95 ms
93,508 KB
testcase_15 AC 95 ms
93,252 KB
testcase_16 AC 104 ms
94,252 KB
testcase_17 AC 90 ms
94,856 KB
testcase_18 AC 50 ms
68,072 KB
testcase_19 AC 103 ms
93,548 KB
testcase_20 AC 50 ms
64,768 KB
testcase_21 AC 76 ms
85,164 KB
testcase_22 AC 40 ms
52,012 KB
testcase_23 AC 39 ms
52,112 KB
testcase_24 AC 40 ms
51,776 KB
testcase_25 AC 47 ms
59,960 KB
testcase_26 AC 48 ms
64,352 KB
testcase_27 AC 47 ms
64,848 KB
testcase_28 AC 39 ms
51,956 KB
testcase_29 AC 66 ms
87,080 KB
testcase_30 AC 88 ms
97,848 KB
testcase_31 AC 44 ms
58,584 KB
testcase_32 AC 84 ms
94,664 KB
testcase_33 AC 93 ms
96,352 KB
testcase_34 AC 53 ms
70,188 KB
testcase_35 AC 71 ms
88,576 KB
testcase_36 AC 86 ms
98,884 KB
testcase_37 AC 72 ms
84,768 KB
testcase_38 AC 100 ms
94,980 KB
testcase_39 AC 99 ms
93,116 KB
testcase_40 AC 72 ms
87,896 KB
testcase_41 AC 41 ms
51,944 KB
testcase_42 AC 70 ms
87,168 KB
testcase_43 AC 40 ms
52,308 KB
testcase_44 AC 40 ms
51,852 KB
testcase_45 AC 47 ms
60,196 KB
testcase_46 AC 40 ms
51,772 KB
testcase_47 AC 40 ms
52,104 KB
testcase_48 AC 41 ms
51,764 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