結果

問題 No.871 かえるのうた
ユーザー TakoKurageTakoKurage
提出日時 2019-08-30 23:11:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,896 KB
最終ジャッジ日時 2024-11-30 10:50:31
合計ジャッジ時間 4,784 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 30 ms
11,136 KB
testcase_09 AC 29 ms
11,264 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 27 ms
11,008 KB
testcase_12 AC 40 ms
13,392 KB
testcase_13 AC 31 ms
11,392 KB
testcase_14 AC 110 ms
28,032 KB
testcase_15 AC 108 ms
28,140 KB
testcase_16 AC 246 ms
28,896 KB
testcase_17 AC 109 ms
26,464 KB
testcase_18 AC 44 ms
13,376 KB
testcase_19 AC 119 ms
28,176 KB
testcase_20 AC 42 ms
12,100 KB
testcase_21 AC 75 ms
16,296 KB
testcase_22 AC 27 ms
10,752 KB
testcase_23 AC 27 ms
10,752 KB
testcase_24 AC 27 ms
10,624 KB
testcase_25 AC 30 ms
11,008 KB
testcase_26 AC 44 ms
12,032 KB
testcase_27 AC 36 ms
12,928 KB
testcase_28 AC 27 ms
10,624 KB
testcase_29 AC 66 ms
17,880 KB
testcase_30 AC 168 ms
22,268 KB
testcase_31 AC 30 ms
11,136 KB
testcase_32 AC 140 ms
20,184 KB
testcase_33 AC 106 ms
26,552 KB
testcase_34 AC 45 ms
14,756 KB
testcase_35 AC 71 ms
19,368 KB
testcase_36 AC 86 ms
22,340 KB
testcase_37 AC 104 ms
17,468 KB
testcase_38 AC 217 ms
27,036 KB
testcase_39 AC 187 ms
25,928 KB
testcase_40 AC 144 ms
17,988 KB
testcase_41 AC 26 ms
10,752 KB
testcase_42 AC 154 ms
17,988 KB
testcase_43 AC 27 ms
10,752 KB
testcase_44 AC 26 ms
10,752 KB
testcase_45 AC 29 ms
10,752 KB
testcase_46 AC 27 ms
10,624 KB
testcase_47 AC 26 ms
10,624 KB
testcase_48 AC 25 ms
10,624 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]

ans = -1
while ans != right - left:
    ans = right - left
    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(ans + 1)
0