結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 27 ms
10,752 KB
testcase_04 AC 25 ms
10,880 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 26 ms
10,880 KB
testcase_11 AC 26 ms
10,880 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 93 ms
26,624 KB
testcase_15 WA -
testcase_16 AC 126 ms
28,968 KB
testcase_17 AC 87 ms
26,408 KB
testcase_18 AC 36 ms
13,164 KB
testcase_19 WA -
testcase_20 AC 34 ms
11,976 KB
testcase_21 WA -
testcase_22 AC 28 ms
10,752 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 AC 26 ms
10,752 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 27 ms
10,880 KB
testcase_29 AC 58 ms
17,880 KB
testcase_30 WA -
testcase_31 AC 27 ms
11,008 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 41 ms
15,024 KB
testcase_35 WA -
testcase_36 AC 76 ms
22,376 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 241 ms
17,756 KB
testcase_41 AC 28 ms
10,752 KB
testcase_42 AC 59 ms
17,884 KB
testcase_43 AC 28 ms
10,880 KB
testcase_44 AC 28 ms
10,752 KB
testcase_45 AC 36 ms
10,880 KB
testcase_46 AC 26 ms
10,752 KB
testcase_47 AC 27 ms
10,880 KB
testcase_48 AC 26 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
pl = 0
pr = 0
allfrog = 0


while True:
    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])
    if bl == nowl and br == nowr and pl == l and pr == r:
        break
    nowl = bl
    nowr = br
    pl = l
    pr = r

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