結果

問題 No.871 かえるのうた
ユーザー ntudantuda
提出日時 2024-05-22 19:11:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 425 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 100,516 KB
最終ジャッジ日時 2024-05-22 19:11:16
合計ジャッジ時間 5,972 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,008 KB
testcase_01 AC 37 ms
52,520 KB
testcase_02 AC 36 ms
53,360 KB
testcase_03 WA -
testcase_04 AC 36 ms
52,848 KB
testcase_05 WA -
testcase_06 AC 38 ms
53,140 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 41 ms
60,228 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 113 ms
100,516 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 48 ms
66,548 KB
testcase_21 WA -
testcase_22 AC 36 ms
53,536 KB
testcase_23 WA -
testcase_24 AC 36 ms
53,228 KB
testcase_25 AC 47 ms
62,432 KB
testcase_26 AC 50 ms
67,188 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 95 ms
98,168 KB
testcase_31 WA -
testcase_32 AC 89 ms
95,260 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 80 ms
87,792 KB
testcase_38 AC 105 ms
95,356 KB
testcase_39 AC 103 ms
93,780 KB
testcase_40 AC 69 ms
90,272 KB
testcase_41 AC 35 ms
52,904 KB
testcase_42 AC 70 ms
94,812 KB
testcase_43 AC 36 ms
52,520 KB
testcase_44 AC 36 ms
52,864 KB
testcase_45 AC 46 ms
62,652 KB
testcase_46 AC 37 ms
52,948 KB
testcase_47 AC 36 ms
53,132 KB
testcase_48 AC 36 ms
53,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
X = list(map(int, input().split()))
A = list(map(int, input().split()))
K -= 1
Q = [K]
lp = K
rp = K
li = K
ri = K
rlimit = K
ans = 0
while Q:
    x = Q.pop()
    lp = min(lp, X[x] - A[x])
    while 0 < li and lp <= X[li - 1]:
        li -= 1
        Q.append(li)
    rp = max(rp, X[x] + A[x])
    while ri < N - 1 and X[ri + 1] <= rp:
        ri += 1
        Q.append(ri)
print(ri - li + 1)
0