結果

問題 No.871 かえるのうた
ユーザー ttrttr
提出日時 2020-02-04 20:43:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,248 KB
最終ジャッジ日時 2024-05-07 16:37:34
合計ジャッジ時間 5,005 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 25 ms
10,496 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 28 ms
11,008 KB
testcase_09 AC 30 ms
11,136 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 26 ms
10,880 KB
testcase_12 AC 39 ms
13,440 KB
testcase_13 AC 31 ms
11,264 KB
testcase_14 AC 105 ms
27,872 KB
testcase_15 AC 103 ms
27,828 KB
testcase_16 AC 225 ms
25,804 KB
testcase_17 AC 100 ms
26,148 KB
testcase_18 AC 39 ms
12,964 KB
testcase_19 AC 114 ms
28,248 KB
testcase_20 AC 42 ms
11,924 KB
testcase_21 AC 71 ms
16,044 KB
testcase_22 AC 26 ms
10,624 KB
testcase_23 AC 25 ms
10,624 KB
testcase_24 AC 25 ms
10,624 KB
testcase_25 AC 29 ms
10,880 KB
testcase_26 AC 48 ms
11,776 KB
testcase_27 AC 36 ms
12,672 KB
testcase_28 AC 25 ms
10,752 KB
testcase_29 AC 62 ms
17,712 KB
testcase_30 AC 202 ms
22,444 KB
testcase_31 AC 28 ms
11,008 KB
testcase_32 AC 131 ms
20,532 KB
testcase_33 AC 101 ms
26,232 KB
testcase_34 AC 46 ms
14,672 KB
testcase_35 AC 71 ms
19,568 KB
testcase_36 AC 85 ms
22,296 KB
testcase_37 AC 108 ms
17,808 KB
testcase_38 AC 210 ms
26,884 KB
testcase_39 AC 165 ms
25,692 KB
testcase_40 AC 141 ms
17,240 KB
testcase_41 AC 26 ms
10,752 KB
testcase_42 AC 181 ms
17,336 KB
testcase_43 AC 27 ms
10,624 KB
testcase_44 AC 27 ms
10,752 KB
testcase_45 AC 31 ms
10,752 KB
testcase_46 AC 27 ms
10,624 KB
testcase_47 AC 27 ms
10,624 KB
testcase_48 AC 26 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()]

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