結果

問題 No.871 かえるのうた
ユーザー terasaterasa
提出日時 2022-06-05 21:07:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,126 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 93,568 KB
最終ジャッジ日時 2024-09-21 04:17:45
合計ジャッジ時間 6,084 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,492 KB
testcase_01 WA -
testcase_02 AC 41 ms
55,156 KB
testcase_03 AC 41 ms
56,028 KB
testcase_04 AC 39 ms
55,448 KB
testcase_05 AC 39 ms
55,512 KB
testcase_06 WA -
testcase_07 AC 44 ms
55,072 KB
testcase_08 AC 44 ms
63,280 KB
testcase_09 AC 45 ms
63,648 KB
testcase_10 AC 44 ms
61,556 KB
testcase_11 AC 43 ms
60,940 KB
testcase_12 AC 49 ms
70,224 KB
testcase_13 AC 45 ms
63,408 KB
testcase_14 AC 86 ms
92,152 KB
testcase_15 AC 86 ms
91,500 KB
testcase_16 AC 92 ms
93,568 KB
testcase_17 AC 84 ms
91,668 KB
testcase_18 AC 50 ms
71,620 KB
testcase_19 WA -
testcase_20 AC 54 ms
67,456 KB
testcase_21 AC 70 ms
84,856 KB
testcase_22 AC 40 ms
55,588 KB
testcase_23 AC 39 ms
54,888 KB
testcase_24 AC 40 ms
55,004 KB
testcase_25 AC 45 ms
62,588 KB
testcase_26 AC 48 ms
67,104 KB
testcase_27 AC 47 ms
67,984 KB
testcase_28 AC 45 ms
55,596 KB
testcase_29 AC 64 ms
89,112 KB
testcase_30 AC 78 ms
93,064 KB
testcase_31 AC 42 ms
62,412 KB
testcase_32 AC 80 ms
92,672 KB
testcase_33 WA -
testcase_34 AC 51 ms
73,260 KB
testcase_35 AC 70 ms
89,644 KB
testcase_36 AC 75 ms
89,804 KB
testcase_37 AC 75 ms
86,036 KB
testcase_38 AC 91 ms
92,028 KB
testcase_39 WA -
testcase_40 AC 67 ms
89,504 KB
testcase_41 AC 41 ms
55,276 KB
testcase_42 AC 68 ms
91,148 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 42 ms
55,276 KB
testcase_47 AC 40 ms
54,940 KB
testcase_48 AC 39 ms
56,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict
import bisect

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


def index_lt(a, x):
    'return largest index s.t. A[i] < x or -1 if it does not exist'
    return bisect.bisect_left(a, x) - 1


def index_le(a, x):
    'return largest index s.t. A[i] <= x or -1 if it does not exist'
    return bisect.bisect_right(a, x) - 1


def index_gt(a, x):
    'return smallest index s.t. A[i] > x or len(a) if it does not exist'
    return bisect.bisect_right(a, x)


def index_ge(a, x):
    'return smallest index s.t. A[i] >= x or len(a) if it does not exist'
    return bisect.bisect_left(a, x)


N, K = map(int, input().split())
X = list(map(int, input().split()))
A = list(map(int, input().split()))
K -= 1

l = X[K]
r = X[K]
li = K
ri = K
for i in range(K, -1, -1):
    if X[i] < l:
        break
    l = min(l, X[i] - A[i])
    li -= 1
for i in range(K, N):
    if r < X[i]:
        break
    r = max(r, X[i] + A[i])
    ri += 1
# li < x < ri
print(ri - li - 1)
0