結果

問題 No.871 かえるのうた
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-05-17 23:19:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 374 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 98,688 KB
最終ジャッジ日時 2024-09-15 22:02:55
合計ジャッジ時間 6,305 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,456 KB
testcase_01 WA -
testcase_02 AC 46 ms
51,712 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 42 ms
51,840 KB
testcase_05 AC 42 ms
51,712 KB
testcase_06 WA -
testcase_07 AC 42 ms
51,712 KB
testcase_08 AC 47 ms
58,624 KB
testcase_09 AC 47 ms
58,880 KB
testcase_10 AC 46 ms
58,112 KB
testcase_11 AC 46 ms
58,112 KB
testcase_12 AC 56 ms
67,328 KB
testcase_13 AC 48 ms
59,520 KB
testcase_14 AC 106 ms
93,056 KB
testcase_15 AC 104 ms
93,440 KB
testcase_16 AC 114 ms
93,784 KB
testcase_17 AC 102 ms
95,232 KB
testcase_18 AC 55 ms
67,712 KB
testcase_19 WA -
testcase_20 AC 55 ms
64,384 KB
testcase_21 AC 80 ms
83,200 KB
testcase_22 AC 41 ms
51,968 KB
testcase_23 AC 41 ms
51,968 KB
testcase_24 AC 41 ms
51,712 KB
testcase_25 AC 49 ms
59,648 KB
testcase_26 AC 53 ms
63,616 KB
testcase_27 AC 52 ms
64,768 KB
testcase_28 AC 41 ms
51,968 KB
testcase_29 AC 73 ms
86,656 KB
testcase_30 AC 97 ms
97,792 KB
testcase_31 AC 46 ms
58,368 KB
testcase_32 AC 91 ms
94,592 KB
testcase_33 WA -
testcase_34 AC 59 ms
70,016 KB
testcase_35 AC 77 ms
87,680 KB
testcase_36 AC 94 ms
98,688 KB
testcase_37 AC 78 ms
83,840 KB
testcase_38 AC 107 ms
94,976 KB
testcase_39 WA -
testcase_40 AC 77 ms
87,296 KB
testcase_41 AC 40 ms
51,840 KB
testcase_42 AC 73 ms
86,272 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 42 ms
51,840 KB
testcase_47 AC 41 ms
51,456 KB
testcase_48 AC 41 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

k -= 1
r = k+1
rx = X[k]+A[k]
while r < n:
    if X[r] <= rx:
        rx = max(rx,X[r]+A[r])
        r += 1
    else:
        break

l = k-1
lx = X[k]-A[k]
while 0 <= l:
    if X[l] >= lx:
        lx = min(lx,X[l]-A[l])
        l -= 1
    else:
        break

print(r-l-1)
0