結果

問題 No.871 かえるのうた
ユーザー ttrttr
提出日時 2020-02-04 20:43:22
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,248 KB
最終ジャッジ日時 2024-11-30 11:00:21
合計ジャッジ時間 5,127 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 28 ms
11,008 KB
testcase_09 AC 32 ms
11,136 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 42 ms
13,440 KB
testcase_13 AC 32 ms
11,520 KB
testcase_14 AC 114 ms
27,872 KB
testcase_15 AC 109 ms
27,956 KB
testcase_16 AC 223 ms
25,996 KB
testcase_17 AC 101 ms
26,276 KB
testcase_18 AC 40 ms
13,088 KB
testcase_19 AC 112 ms
28,248 KB
testcase_20 AC 41 ms
12,048 KB
testcase_21 AC 70 ms
16,176 KB
testcase_22 AC 26 ms
10,752 KB
testcase_23 AC 27 ms
10,624 KB
testcase_24 AC 27 ms
10,880 KB
testcase_25 AC 33 ms
10,880 KB
testcase_26 AC 53 ms
12,032 KB
testcase_27 AC 39 ms
12,800 KB
testcase_28 AC 26 ms
10,752 KB
testcase_29 AC 66 ms
17,712 KB
testcase_30 AC 211 ms
22,748 KB
testcase_31 AC 29 ms
11,136 KB
testcase_32 AC 133 ms
20,376 KB
testcase_33 AC 101 ms
26,168 KB
testcase_34 AC 43 ms
14,676 KB
testcase_35 AC 69 ms
19,468 KB
testcase_36 AC 84 ms
22,216 KB
testcase_37 AC 107 ms
17,696 KB
testcase_38 AC 221 ms
26,760 KB
testcase_39 AC 170 ms
25,752 KB
testcase_40 AC 146 ms
17,464 KB
testcase_41 AC 27 ms
10,624 KB
testcase_42 AC 183 ms
17,332 KB
testcase_43 AC 27 ms
10,624 KB
testcase_44 AC 28 ms
10,624 KB
testcase_45 AC 30 ms
10,752 KB
testcase_46 AC 25 ms
10,624 KB
testcase_47 AC 25 ms
10,752 KB
testcase_48 AC 26 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

i = K-1
j = K-1
l = X[i]
r = X[j]
while True:
    flag = True
    l = min(l, X[i]-A[i], X[j]-A[j])
    r = max(r, X[i]+A[i], X[j]+A[j])
    if i > 0 and X[i-1] >= l:
        i -= 1
        flag = False
    if j < N-1 and X[j+1] <= r:
        j += 1
        flag = False
    if flag:
        break

print(j-i+1)
0