結果

問題 No.871 かえるのうた
ユーザー AT274_AT274_
提出日時 2019-10-14 22:10:47
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 543 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,080 KB
最終ジャッジ日時 2024-11-30 10:57:31
合計ジャッジ時間 5,095 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 32 ms
11,136 KB
testcase_09 AC 32 ms
11,264 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 31 ms
10,880 KB
testcase_12 AC 43 ms
13,568 KB
testcase_13 AC 32 ms
11,264 KB
testcase_14 AC 105 ms
26,716 KB
testcase_15 AC 104 ms
28,080 KB
testcase_16 AC 238 ms
25,908 KB
testcase_17 AC 101 ms
26,488 KB
testcase_18 AC 42 ms
13,204 KB
testcase_19 AC 111 ms
26,836 KB
testcase_20 AC 47 ms
12,060 KB
testcase_21 AC 80 ms
17,220 KB
testcase_22 AC 32 ms
10,624 KB
testcase_23 AC 29 ms
10,624 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 34 ms
11,008 KB
testcase_26 AC 50 ms
11,904 KB
testcase_27 AC 40 ms
12,928 KB
testcase_28 AC 30 ms
10,624 KB
testcase_29 AC 64 ms
17,840 KB
testcase_30 AC 176 ms
22,112 KB
testcase_31 AC 31 ms
11,136 KB
testcase_32 AC 143 ms
21,044 KB
testcase_33 AC 101 ms
25,912 KB
testcase_34 AC 47 ms
14,976 KB
testcase_35 AC 73 ms
19,336 KB
testcase_36 AC 87 ms
22,336 KB
testcase_37 AC 113 ms
17,428 KB
testcase_38 AC 223 ms
25,724 KB
testcase_39 AC 198 ms
26,016 KB
testcase_40 AC 153 ms
17,948 KB
testcase_41 AC 30 ms
10,752 KB
testcase_42 AC 162 ms
17,824 KB
testcase_43 AC 30 ms
10,752 KB
testcase_44 AC 30 ms
10,624 KB
testcase_45 AC 33 ms
10,880 KB
testcase_46 AC 30 ms
10,624 KB
testcase_47 AC 31 ms
10,752 KB
testcase_48 AC 30 ms
10,752 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