結果

問題 No.871 かえるのうた
ユーザー daku9640daku9640
提出日時 2019-08-30 22:30:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 609 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 29,980 KB
最終ジャッジ日時 2024-11-22 00:47:37
合計ジャッジ時間 14,737 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,568 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 32 ms
11,136 KB
testcase_09 AC 32 ms
11,264 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 31 ms
11,008 KB
testcase_12 AC 47 ms
14,080 KB
testcase_13 AC 33 ms
11,520 KB
testcase_14 AC 123 ms
29,536 KB
testcase_15 AC 121 ms
29,720 KB
testcase_16 AC 176 ms
28,944 KB
testcase_17 AC 117 ms
28,192 KB
testcase_18 AC 45 ms
13,716 KB
testcase_19 AC 190 ms
29,980 KB
testcase_20 AC 38 ms
12,336 KB
testcase_21 AC 420 ms
18,000 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 29 ms
10,752 KB
testcase_25 AC 32 ms
11,136 KB
testcase_26 AC 52 ms
12,288 KB
testcase_27 AC 42 ms
13,184 KB
testcase_28 AC 29 ms
10,752 KB
testcase_29 AC 74 ms
18,956 KB
testcase_30 AC 1,238 ms
24,428 KB
testcase_31 AC 32 ms
11,136 KB
testcase_32 TLE -
testcase_33 AC 124 ms
28,604 KB
testcase_34 AC 51 ms
15,504 KB
testcase_35 AC 83 ms
22,532 KB
testcase_36 AC 102 ms
25,556 KB
testcase_37 AC 342 ms
18,608 KB
testcase_38 AC 746 ms
28,096 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 30 ms
10,752 KB
testcase_42 AC 83 ms
20,144 KB
testcase_43 AC 29 ms
10,624 KB
testcase_44 AC 30 ms
10,624 KB
testcase_45 AC 95 ms
10,880 KB
testcase_46 AC 30 ms
10,752 KB
testcase_47 AC 30 ms
10,624 KB
testcase_48 AC 29 ms
16,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect, insort_left, insort
def solve():
    n, k = map(int, input().split())
    k -= 1
    X = list(map(int, input().split()))
    A = list(map(int, input().split()))
    L = [X[i] - A[i] for i in range(n)]
    R = [X[i] + A[i] for i in range(n)]
    l = r = k
    flg = True
    min_x, max_x = L[l], R[r]
    while flg:
        flg = False
        lt = bisect_left(X, min_x)
        rt = bisect(X, max_x) - 1
        min_x = min(L[lt:rt + 1])
        max_x = max(R[lt:rt + 1])
        if l != lt or r != rt:
            l, r, flg = lt, rt, True
    print(r - l + 1)
solve()
0