結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,156 KB
testcase_01 WA -
testcase_02 AC 33 ms
54,076 KB
testcase_03 AC 32 ms
52,704 KB
testcase_04 AC 33 ms
52,448 KB
testcase_05 AC 34 ms
52,264 KB
testcase_06 AC 33 ms
52,380 KB
testcase_07 AC 37 ms
52,388 KB
testcase_08 AC 42 ms
59,440 KB
testcase_09 AC 36 ms
60,736 KB
testcase_10 AC 37 ms
58,948 KB
testcase_11 AC 35 ms
60,296 KB
testcase_12 AC 42 ms
68,224 KB
testcase_13 AC 37 ms
60,308 KB
testcase_14 AC 95 ms
93,700 KB
testcase_15 AC 93 ms
93,660 KB
testcase_16 AC 100 ms
94,588 KB
testcase_17 AC 82 ms
95,448 KB
testcase_18 AC 42 ms
69,632 KB
testcase_19 WA -
testcase_20 AC 45 ms
66,264 KB
testcase_21 AC 67 ms
86,052 KB
testcase_22 AC 33 ms
53,040 KB
testcase_23 AC 32 ms
52,452 KB
testcase_24 AC 32 ms
52,800 KB
testcase_25 AC 38 ms
61,272 KB
testcase_26 AC 40 ms
64,684 KB
testcase_27 AC 38 ms
65,504 KB
testcase_28 AC 31 ms
52,700 KB
testcase_29 AC 58 ms
88,368 KB
testcase_30 AC 79 ms
98,276 KB
testcase_31 AC 36 ms
59,528 KB
testcase_32 AC 77 ms
95,304 KB
testcase_33 AC 85 ms
96,716 KB
testcase_34 AC 47 ms
71,112 KB
testcase_35 AC 63 ms
90,180 KB
testcase_36 AC 76 ms
98,904 KB
testcase_37 AC 62 ms
85,224 KB
testcase_38 AC 87 ms
95,736 KB
testcase_39 WA -
testcase_40 AC 64 ms
89,576 KB
testcase_41 AC 31 ms
52,532 KB
testcase_42 AC 67 ms
88,840 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 31 ms
52,448 KB
testcase_47 AC 32 ms
52,104 KB
testcase_48 AC 33 ms
52,280 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