結果

問題 No.871 かえるのうた
ユーザー TakoKurageTakoKurage
提出日時 2019-08-30 23:09:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,336 KB
最終ジャッジ日時 2024-11-30 10:50:26
合計ジャッジ時間 5,737 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 AC 33 ms
10,624 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 35 ms
11,136 KB
testcase_09 AC 35 ms
11,136 KB
testcase_10 AC 33 ms
10,752 KB
testcase_11 AC 32 ms
10,880 KB
testcase_12 AC 54 ms
13,640 KB
testcase_13 AC 37 ms
11,520 KB
testcase_14 AC 158 ms
27,844 KB
testcase_15 AC 161 ms
27,932 KB
testcase_16 AC 262 ms
25,912 KB
testcase_17 AC 155 ms
26,360 KB
testcase_18 AC 53 ms
13,080 KB
testcase_19 AC 166 ms
28,336 KB
testcase_20 AC 50 ms
12,060 KB
testcase_21 AC 92 ms
16,140 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 36 ms
10,880 KB
testcase_26 AC 53 ms
11,904 KB
testcase_27 AC 48 ms
12,800 KB
testcase_28 AC 30 ms
10,624 KB
testcase_29 AC 98 ms
17,836 KB
testcase_30 AC 209 ms
22,868 KB
testcase_31 AC 33 ms
11,008 KB
testcase_32 AC 174 ms
20,276 KB
testcase_33 AC 157 ms
25,652 KB
testcase_34 AC 63 ms
15,104 KB
testcase_35 AC 107 ms
19,168 KB
testcase_36 AC 133 ms
22,204 KB
testcase_37 AC 133 ms
17,432 KB
testcase_38 AC 260 ms
27,012 KB
testcase_39 AC 242 ms
25,884 KB
testcase_40 AC 173 ms
17,816 KB
testcase_41 AC 31 ms
10,752 KB
testcase_42 AC 175 ms
17,956 KB
testcase_43 AC 30 ms
10,752 KB
testcase_44 AC 30 ms
10,752 KB
testcase_45 AC 34 ms
10,752 KB
testcase_46 AC 30 ms
10,752 KB
testcase_47 AC 31 ms
10,752 KB
testcase_48 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = [int(i) for i in input().split()]
X = [int(i) for i in input().split()]
A = [int(i) for i in input().split()]

left = right = K - 1

lower = X[left] - A[left]
upper = X[right] + A[right]

for _ in range(N):
    while 0 < left and lower <= X[left - 1]:
        left -= 1
        upper = max(upper, X[left] + A[left])
        lower = min(lower, X[left] - A[left])
    while right < N - 1 and X[right + 1] <= upper:
        right += 1
        upper = max(upper, X[right] + A[right])
        lower = min(lower, X[right] - A[right])

print(right - left + 1)
0