結果

問題 No.871 かえるのうた
ユーザー face4face4
提出日時 2019-06-11 22:20:31
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,180 KB
最終ジャッジ日時 2024-11-30 10:42:45
合計ジャッジ時間 5,147 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 30 ms
11,008 KB
testcase_09 AC 30 ms
11,136 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 28 ms
11,136 KB
testcase_12 AC 41 ms
13,476 KB
testcase_13 AC 31 ms
11,264 KB
testcase_14 AC 106 ms
27,860 KB
testcase_15 AC 107 ms
28,180 KB
testcase_16 AC 229 ms
27,196 KB
testcase_17 AC 106 ms
26,244 KB
testcase_18 AC 39 ms
13,084 KB
testcase_19 AC 115 ms
28,180 KB
testcase_20 AC 43 ms
12,236 KB
testcase_21 AC 75 ms
16,380 KB
testcase_22 AC 27 ms
10,880 KB
testcase_23 AC 27 ms
10,752 KB
testcase_24 AC 27 ms
10,752 KB
testcase_25 AC 31 ms
11,008 KB
testcase_26 AC 45 ms
11,904 KB
testcase_27 AC 37 ms
12,672 KB
testcase_28 AC 27 ms
10,624 KB
testcase_29 AC 69 ms
17,720 KB
testcase_30 AC 176 ms
22,628 KB
testcase_31 AC 29 ms
11,264 KB
testcase_32 AC 144 ms
20,380 KB
testcase_33 AC 108 ms
26,300 KB
testcase_34 AC 47 ms
14,724 KB
testcase_35 AC 74 ms
19,304 KB
testcase_36 AC 87 ms
22,048 KB
testcase_37 AC 107 ms
16,728 KB
testcase_38 AC 210 ms
24,468 KB
testcase_39 AC 190 ms
25,720 KB
testcase_40 AC 150 ms
17,824 KB
testcase_41 AC 26 ms
10,752 KB
testcase_42 AC 155 ms
17,828 KB
testcase_43 AC 27 ms
10,752 KB
testcase_44 AC 27 ms
10,624 KB
testcase_45 AC 30 ms
10,752 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 = 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