結果

問題 No.871 かえるのうた
ユーザー ttrttr
提出日時 2020-02-04 20:34:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 355 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,840 KB
最終ジャッジ日時 2024-09-21 07:42:10
合計ジャッジ時間 5,256 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 WA -
testcase_02 AC 30 ms
10,752 KB
testcase_03 WA -
testcase_04 AC 30 ms
10,624 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 31 ms
10,624 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 194 ms
28,840 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 43 ms
12,048 KB
testcase_21 WA -
testcase_22 AC 30 ms
10,880 KB
testcase_23 WA -
testcase_24 AC 29 ms
10,752 KB
testcase_25 AC 33 ms
11,136 KB
testcase_26 AC 44 ms
11,904 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 141 ms
22,216 KB
testcase_31 WA -
testcase_32 AC 119 ms
20,128 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 93 ms
17,404 KB
testcase_38 AC 180 ms
26,836 KB
testcase_39 WA -
testcase_40 AC 121 ms
17,932 KB
testcase_41 AC 29 ms
10,624 KB
testcase_42 AC 125 ms
17,800 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 29 ms
10,880 KB
testcase_47 AC 29 ms
10,752 KB
testcase_48 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int, input().split())
X = [int(x) for x in input().split()]
A = [int(a) for a in input().split()]

l = K-1
p = A[l]
while l > 0:
    p = min(p, X[l]-A[l])
    if X[l-1] >= p:
        l -= 1
    else:
        break

r = K-1
p = A[r]
while r < N-1:
    p = max(p, X[r]+A[r])
    if X[r+1] <= p:
        r += 1
    else:
        break

print(r-l+1)
0