結果

問題 No.871 かえるのうた
ユーザー roarisroaris
提出日時 2019-08-30 21:39:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 310 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 98,816 KB
最終ジャッジ日時 2024-11-21 22:17:31
合計ジャッジ時間 5,786 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 WA -
testcase_02 AC 43 ms
51,968 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 WA -
testcase_05 AC 42 ms
51,968 KB
testcase_06 WA -
testcase_07 AC 42 ms
51,968 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 64 ms
66,944 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 162 ms
93,312 KB
testcase_15 WA -
testcase_16 AC 137 ms
94,124 KB
testcase_17 AC 151 ms
95,104 KB
testcase_18 AC 84 ms
78,464 KB
testcase_19 WA -
testcase_20 AC 73 ms
76,288 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 40 ms
52,096 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 40 ms
52,096 KB
testcase_29 AC 119 ms
93,952 KB
testcase_30 WA -
testcase_31 AC 65 ms
68,608 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 87 ms
80,000 KB
testcase_35 WA -
testcase_36 AC 140 ms
98,816 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 128 ms
92,288 KB
testcase_41 AC 41 ms
52,224 KB
testcase_42 AC 103 ms
92,416 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 41 ms
51,840 KB
testcase_47 AC 41 ms
51,712 KB
testcase_48 AC 41 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

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

for _ in range(N):
    m = bisect_right(X, X[i]+A[i])
    i = m - 1

r = i
i = K

for _ in range(N):
    m = bisect_left(X, X[i]-A[i])
    i = m

l = i

print(r - l + 1)
0