結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 37 ms
51,584 KB
testcase_08 AC 41 ms
58,880 KB
testcase_09 AC 42 ms
59,648 KB
testcase_10 AC 41 ms
57,856 KB
testcase_11 AC 41 ms
57,984 KB
testcase_12 AC 50 ms
67,328 KB
testcase_13 AC 42 ms
59,904 KB
testcase_14 AC 94 ms
93,440 KB
testcase_15 AC 90 ms
93,404 KB
testcase_16 AC 104 ms
93,904 KB
testcase_17 AC 89 ms
94,848 KB
testcase_18 AC 50 ms
67,968 KB
testcase_19 AC 101 ms
94,288 KB
testcase_20 AC 50 ms
64,640 KB
testcase_21 AC 76 ms
85,376 KB
testcase_22 AC 37 ms
51,712 KB
testcase_23 AC 36 ms
51,840 KB
testcase_24 AC 36 ms
51,968 KB
testcase_25 AC 45 ms
60,544 KB
testcase_26 AC 48 ms
63,872 KB
testcase_27 AC 46 ms
64,640 KB
testcase_28 AC 37 ms
51,968 KB
testcase_29 AC 66 ms
86,912 KB
testcase_30 AC 91 ms
97,664 KB
testcase_31 AC 42 ms
58,752 KB
testcase_32 AC 88 ms
94,208 KB
testcase_33 AC 90 ms
96,512 KB
testcase_34 AC 51 ms
69,888 KB
testcase_35 AC 70 ms
88,320 KB
testcase_36 AC 85 ms
98,560 KB
testcase_37 AC 72 ms
84,608 KB
testcase_38 AC 100 ms
95,488 KB
testcase_39 AC 94 ms
93,440 KB
testcase_40 AC 73 ms
88,192 KB
testcase_41 AC 37 ms
51,584 KB
testcase_42 AC 69 ms
86,656 KB
testcase_43 AC 37 ms
52,352 KB
testcase_44 AC 37 ms
51,968 KB
testcase_45 AC 44 ms
59,648 KB
testcase_46 AC 36 ms
52,096 KB
testcase_47 AC 36 ms
51,968 KB
testcase_48 AC 36 ms
51,968 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