結果

問題 No.871 かえるのうた
ユーザー brthyyjpbrthyyjp
提出日時 2020-06-09 14:39:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 495 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 98,884 KB
最終ジャッジ日時 2024-06-10 12:24:54
合計ジャッジ時間 5,396 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,552 KB
testcase_01 WA -
testcase_02 AC 38 ms
52,436 KB
testcase_03 AC 38 ms
53,344 KB
testcase_04 AC 38 ms
52,692 KB
testcase_05 AC 37 ms
52,892 KB
testcase_06 AC 37 ms
52,236 KB
testcase_07 AC 37 ms
52,688 KB
testcase_08 AC 42 ms
60,168 KB
testcase_09 AC 42 ms
59,396 KB
testcase_10 AC 42 ms
58,800 KB
testcase_11 AC 41 ms
58,640 KB
testcase_12 AC 46 ms
67,152 KB
testcase_13 AC 42 ms
60,452 KB
testcase_14 AC 90 ms
93,396 KB
testcase_15 AC 89 ms
93,264 KB
testcase_16 AC 101 ms
93,852 KB
testcase_17 AC 85 ms
94,576 KB
testcase_18 AC 46 ms
69,732 KB
testcase_19 WA -
testcase_20 AC 47 ms
65,552 KB
testcase_21 AC 71 ms
85,200 KB
testcase_22 AC 37 ms
52,888 KB
testcase_23 AC 38 ms
52,456 KB
testcase_24 AC 38 ms
53,352 KB
testcase_25 AC 44 ms
61,264 KB
testcase_26 AC 47 ms
65,024 KB
testcase_27 AC 45 ms
65,420 KB
testcase_28 AC 37 ms
52,556 KB
testcase_29 AC 63 ms
87,020 KB
testcase_30 AC 83 ms
97,568 KB
testcase_31 AC 41 ms
60,208 KB
testcase_32 AC 79 ms
94,364 KB
testcase_33 AC 85 ms
96,528 KB
testcase_34 AC 49 ms
70,372 KB
testcase_35 AC 67 ms
90,044 KB
testcase_36 AC 78 ms
98,884 KB
testcase_37 AC 68 ms
85,124 KB
testcase_38 AC 93 ms
94,916 KB
testcase_39 WA -
testcase_40 AC 69 ms
89,328 KB
testcase_41 AC 37 ms
53,464 KB
testcase_42 AC 65 ms
87,412 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 38 ms
52,452 KB
testcase_47 AC 38 ms
52,072 KB
testcase_48 AC 38 ms
53,228 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