結果

問題 No.871 かえるのうた
ユーザー AT274_AT274_
提出日時 2019-10-14 22:10:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 543 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,076 KB
最終ジャッジ日時 2024-05-07 16:34:37
合計ジャッジ時間 5,294 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 33 ms
11,136 KB
testcase_09 AC 33 ms
11,136 KB
testcase_10 AC 32 ms
10,624 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 43 ms
13,440 KB
testcase_13 AC 34 ms
11,392 KB
testcase_14 AC 105 ms
26,460 KB
testcase_15 AC 107 ms
28,076 KB
testcase_16 AC 241 ms
25,852 KB
testcase_17 AC 101 ms
26,492 KB
testcase_18 AC 42 ms
13,208 KB
testcase_19 AC 111 ms
26,840 KB
testcase_20 AC 48 ms
11,932 KB
testcase_21 AC 82 ms
17,060 KB
testcase_22 AC 31 ms
10,624 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 31 ms
10,624 KB
testcase_25 AC 35 ms
11,008 KB
testcase_26 AC 50 ms
11,904 KB
testcase_27 AC 41 ms
12,672 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 66 ms
17,716 KB
testcase_30 AC 180 ms
22,064 KB
testcase_31 AC 32 ms
11,136 KB
testcase_32 AC 144 ms
21,140 KB
testcase_33 AC 102 ms
25,736 KB
testcase_34 AC 49 ms
14,976 KB
testcase_35 AC 75 ms
19,176 KB
testcase_36 AC 88 ms
22,308 KB
testcase_37 AC 114 ms
17,288 KB
testcase_38 AC 224 ms
25,596 KB
testcase_39 AC 199 ms
25,836 KB
testcase_40 AC 153 ms
17,904 KB
testcase_41 AC 32 ms
10,752 KB
testcase_42 AC 162 ms
17,952 KB
testcase_43 AC 30 ms
10,752 KB
testcase_44 AC 31 ms
10,752 KB
testcase_45 AC 35 ms
10,752 KB
testcase_46 AC 31 ms
10,752 KB
testcase_47 AC 32 ms
10,624 KB
testcase_48 AC 32 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
X = list(map(int, input().split()))
A = list(map(int, input().split()))

l = r = K - 1
ld, rd = X[K - 1] - A[K - 1], X[K - 1] + A[K - 1]


updated = True
while updated:
    updated = False

    while (l - 1 >= 0) and (ld <= X[l - 1]):
        updated = True
        l -= 1
        ld = min(ld, X[l] - A[l])
        rd = max(rd, X[l] + A[l])

    while (r + 1 < N) and (rd >= X[r + 1]):
        updated = True
        r += 1
        ld = min(ld, X[r] - A[r])
        rd = max(rd, X[r] + A[r])

print(r - l + 1)
0