結果

問題 No.871 かえるのうた
ユーザー MineMine
提出日時 2020-09-06 22:42:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 594 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,392 KB
最終ジャッジ日時 2024-05-06 21:35:18
合計ジャッジ時間 9,847 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 34 ms
11,008 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 455 ms
26,736 KB
testcase_15 WA -
testcase_16 AC 484 ms
25,868 KB
testcase_17 AC 422 ms
26,640 KB
testcase_18 AC 111 ms
13,232 KB
testcase_19 WA -
testcase_20 AC 66 ms
12,080 KB
testcase_21 WA -
testcase_22 AC 28 ms
10,880 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 AC 28 ms
10,752 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 29 ms
10,752 KB
testcase_29 AC 283 ms
17,852 KB
testcase_30 WA -
testcase_31 AC 39 ms
11,136 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 144 ms
15,116 KB
testcase_35 WA -
testcase_36 AC 369 ms
22,472 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 315 ms
17,984 KB
testcase_41 AC 29 ms
10,880 KB
testcase_42 AC 293 ms
18,112 KB
testcase_43 AC 29 ms
10,752 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 29 ms
10,752 KB
testcase_47 AC 28 ms
10,752 KB
testcase_48 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
n, k = map(int, input().split())
x = list(map(int, input().split()))
a = list(map(int, input().split()))

now = k-1
l = x[now] - a[now]
r = x[now] + a[now]
nowl = k-1
nowr = k-1


for i in range(n):
    bl = bisect.bisect_left(x, l)
    br = bisect.bisect_right(x, r) - 1
    for now in range(bl, nowl+1):
        l = min(l, x[now] - a[now])
        r = max(r, x[now] + a[now])
    for now in range(br, nowr+1):
        l = min(l, x[now] - a[now])
        r = max(r, x[now] + a[now])
    nowl = bl
    nowr = br

ans = 0
print(bisect.bisect_right(x, r) - bisect.bisect_left(x, l))
0