結果

問題 No.871 かえるのうた
ユーザー TakoKurageTakoKurage
提出日時 2019-08-30 23:11:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 28,964 KB
最終ジャッジ日時 2024-05-07 16:26:49
合計ジャッジ時間 4,662 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 28 ms
11,008 KB
testcase_09 AC 28 ms
11,264 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 28 ms
11,008 KB
testcase_12 AC 39 ms
13,392 KB
testcase_13 AC 28 ms
11,392 KB
testcase_14 AC 108 ms
27,716 KB
testcase_15 AC 104 ms
27,928 KB
testcase_16 AC 214 ms
28,964 KB
testcase_17 AC 97 ms
26,272 KB
testcase_18 AC 39 ms
13,120 KB
testcase_19 AC 110 ms
28,348 KB
testcase_20 AC 41 ms
12,104 KB
testcase_21 AC 74 ms
16,152 KB
testcase_22 AC 26 ms
10,624 KB
testcase_23 AC 26 ms
10,624 KB
testcase_24 AC 25 ms
10,624 KB
testcase_25 AC 29 ms
10,880 KB
testcase_26 AC 43 ms
11,904 KB
testcase_27 AC 35 ms
12,928 KB
testcase_28 AC 28 ms
10,752 KB
testcase_29 AC 66 ms
17,876 KB
testcase_30 AC 159 ms
22,012 KB
testcase_31 AC 29 ms
11,008 KB
testcase_32 AC 134 ms
19,928 KB
testcase_33 AC 100 ms
26,712 KB
testcase_34 AC 45 ms
14,504 KB
testcase_35 AC 72 ms
19,116 KB
testcase_36 AC 86 ms
22,248 KB
testcase_37 AC 104 ms
17,344 KB
testcase_38 AC 203 ms
27,052 KB
testcase_39 AC 179 ms
25,800 KB
testcase_40 AC 139 ms
17,860 KB
testcase_41 AC 27 ms
10,624 KB
testcase_42 AC 158 ms
17,860 KB
testcase_43 AC 28 ms
10,624 KB
testcase_44 AC 28 ms
10,624 KB
testcase_45 AC 30 ms
10,880 KB
testcase_46 AC 26 ms
10,752 KB
testcase_47 AC 26 ms
10,624 KB
testcase_48 AC 26 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]

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