結果

問題 No.871 かえるのうた
ユーザー face4face4
提出日時 2019-06-11 22:20:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,056 KB
最終ジャッジ日時 2024-05-07 16:18:44
合計ジャッジ時間 4,901 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 27 ms
10,496 KB
testcase_07 AC 26 ms
10,496 KB
testcase_08 AC 29 ms
11,136 KB
testcase_09 AC 30 ms
11,264 KB
testcase_10 AC 26 ms
10,880 KB
testcase_11 AC 27 ms
11,008 KB
testcase_12 AC 40 ms
13,344 KB
testcase_13 AC 30 ms
11,392 KB
testcase_14 AC 114 ms
27,920 KB
testcase_15 AC 109 ms
28,056 KB
testcase_16 AC 239 ms
27,076 KB
testcase_17 AC 101 ms
26,112 KB
testcase_18 AC 40 ms
13,208 KB
testcase_19 AC 114 ms
28,012 KB
testcase_20 AC 42 ms
11,856 KB
testcase_21 AC 73 ms
15,996 KB
testcase_22 AC 26 ms
10,624 KB
testcase_23 AC 26 ms
10,752 KB
testcase_24 AC 26 ms
10,624 KB
testcase_25 AC 30 ms
11,008 KB
testcase_26 AC 48 ms
12,032 KB
testcase_27 AC 38 ms
12,672 KB
testcase_28 AC 27 ms
10,752 KB
testcase_29 AC 69 ms
17,844 KB
testcase_30 AC 171 ms
22,624 KB
testcase_31 AC 28 ms
11,136 KB
testcase_32 AC 133 ms
20,156 KB
testcase_33 AC 106 ms
26,168 KB
testcase_34 AC 47 ms
14,856 KB
testcase_35 AC 74 ms
18,952 KB
testcase_36 AC 90 ms
22,088 KB
testcase_37 AC 113 ms
16,860 KB
testcase_38 AC 218 ms
24,292 KB
testcase_39 AC 195 ms
25,760 KB
testcase_40 AC 149 ms
17,952 KB
testcase_41 AC 27 ms
10,624 KB
testcase_42 AC 155 ms
17,952 KB
testcase_43 AC 27 ms
10,624 KB
testcase_44 AC 27 ms
10,496 KB
testcase_45 AC 31 ms
10,880 KB
testcase_46 AC 26 ms
10,624 KB
testcase_47 AC 27 ms
10,624 KB
testcase_48 AC 25 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
x = [0] + [int(i) for i in input().split()]
a = [0] + [int(i) for i in input().split()]

l = r = k
ld, rd = x[k]-a[k], x[k]+a[k]

update = True
while update:
    update = False
    while l-1 >= 1 and ld <= x[l-1]:
        update = True
        l -= 1
        ld = min(ld, x[l]-a[l])
        rd = max(rd, x[l]+a[l])
    while r+1 <= n and x[r+1] <= rd:
        update = True
        r += 1
        rd = max(rd, x[r]+a[r])
        ld = min(ld, x[r]-a[r])

print(r-l+1)
0