結果

問題 No.871 かえるのうた
ユーザー brthyyjpbrthyyjp
提出日時 2020-06-09 14:42:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 605 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 98,624 KB
最終ジャッジ日時 2024-11-30 11:02:09
合計ジャッジ時間 4,691 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,216 KB
testcase_01 AC 36 ms
53,612 KB
testcase_02 AC 33 ms
52,372 KB
testcase_03 AC 34 ms
52,336 KB
testcase_04 AC 34 ms
53,232 KB
testcase_05 AC 35 ms
52,256 KB
testcase_06 AC 35 ms
53,812 KB
testcase_07 AC 34 ms
53,584 KB
testcase_08 AC 38 ms
59,928 KB
testcase_09 AC 38 ms
61,064 KB
testcase_10 AC 39 ms
58,648 KB
testcase_11 AC 39 ms
58,960 KB
testcase_12 AC 45 ms
68,192 KB
testcase_13 AC 39 ms
60,544 KB
testcase_14 AC 83 ms
93,116 KB
testcase_15 AC 85 ms
93,316 KB
testcase_16 AC 95 ms
94,308 KB
testcase_17 AC 83 ms
94,928 KB
testcase_18 AC 43 ms
68,340 KB
testcase_19 AC 94 ms
93,980 KB
testcase_20 AC 46 ms
66,488 KB
testcase_21 AC 70 ms
85,888 KB
testcase_22 AC 36 ms
52,668 KB
testcase_23 AC 37 ms
52,608 KB
testcase_24 AC 35 ms
53,464 KB
testcase_25 AC 41 ms
60,804 KB
testcase_26 AC 43 ms
64,664 KB
testcase_27 AC 42 ms
65,260 KB
testcase_28 AC 35 ms
52,308 KB
testcase_29 AC 61 ms
88,148 KB
testcase_30 AC 82 ms
97,940 KB
testcase_31 AC 38 ms
59,572 KB
testcase_32 AC 77 ms
94,800 KB
testcase_33 AC 81 ms
96,284 KB
testcase_34 AC 45 ms
70,752 KB
testcase_35 AC 64 ms
89,128 KB
testcase_36 AC 79 ms
98,624 KB
testcase_37 AC 65 ms
85,524 KB
testcase_38 AC 93 ms
95,436 KB
testcase_39 AC 88 ms
93,208 KB
testcase_40 AC 64 ms
89,820 KB
testcase_41 AC 37 ms
52,200 KB
testcase_42 AC 65 ms
88,172 KB
testcase_43 AC 37 ms
52,916 KB
testcase_44 AC 36 ms
52,028 KB
testcase_45 AC 40 ms
61,028 KB
testcase_46 AC 34 ms
53,080 KB
testcase_47 AC 33 ms
52,828 KB
testcase_48 AC 35 ms
52,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
X = list(map(int, input().split()))
A = list(map(int, input().split()))

X.sort()

k -= 1

l = k
r = k
ld = X[k]-A[k]
rd = X[k]+A[k]

flag = True
while flag:
    flag = False
    while l-1 >= 0 and ld <= X[l-1]:
        flag = True
        l -= 1
        ld = min(ld, X[l]-A[l])
        rd = max(rd, X[l]+A[l])
    while r+1 <= n-1 and X[r+1] <= rd:
        flag = True
        r += 1
        rd = max(rd, X[r]+A[r])
        ld = min(ld, X[r]-A[r])
print(r-l+1)
0