結果

問題 No.871 かえるのうた
ユーザー roarisroaris
提出日時 2019-08-31 09:56:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,636 KB
実行使用メモリ 96,804 KB
最終ジャッジ日時 2024-11-30 10:53:39
合計ジャッジ時間 4,299 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,740 KB
testcase_01 AC 35 ms
54,096 KB
testcase_02 AC 38 ms
52,088 KB
testcase_03 AC 37 ms
53,192 KB
testcase_04 AC 34 ms
52,408 KB
testcase_05 AC 35 ms
53,096 KB
testcase_06 AC 34 ms
52,736 KB
testcase_07 AC 35 ms
53,940 KB
testcase_08 AC 39 ms
59,948 KB
testcase_09 AC 39 ms
59,896 KB
testcase_10 AC 38 ms
58,416 KB
testcase_11 AC 37 ms
58,644 KB
testcase_12 AC 47 ms
67,232 KB
testcase_13 AC 39 ms
60,384 KB
testcase_14 AC 81 ms
91,596 KB
testcase_15 AC 82 ms
91,664 KB
testcase_16 AC 96 ms
92,768 KB
testcase_17 AC 81 ms
92,284 KB
testcase_18 AC 42 ms
68,328 KB
testcase_19 AC 94 ms
92,412 KB
testcase_20 AC 48 ms
66,216 KB
testcase_21 AC 70 ms
84,400 KB
testcase_22 AC 35 ms
52,016 KB
testcase_23 AC 35 ms
52,532 KB
testcase_24 AC 34 ms
53,108 KB
testcase_25 AC 41 ms
61,068 KB
testcase_26 AC 43 ms
64,756 KB
testcase_27 AC 42 ms
64,656 KB
testcase_28 AC 33 ms
52,888 KB
testcase_29 AC 59 ms
87,564 KB
testcase_30 AC 81 ms
95,972 KB
testcase_31 AC 41 ms
59,388 KB
testcase_32 AC 81 ms
93,544 KB
testcase_33 AC 81 ms
94,512 KB
testcase_34 AC 46 ms
70,220 KB
testcase_35 AC 63 ms
87,796 KB
testcase_36 AC 75 ms
96,804 KB
testcase_37 AC 69 ms
85,400 KB
testcase_38 AC 91 ms
92,264 KB
testcase_39 AC 89 ms
90,804 KB
testcase_40 AC 68 ms
90,184 KB
testcase_41 AC 34 ms
53,024 KB
testcase_42 AC 61 ms
87,704 KB
testcase_43 AC 36 ms
52,092 KB
testcase_44 AC 36 ms
52,700 KB
testcase_45 AC 43 ms
61,056 KB
testcase_46 AC 34 ms
52,928 KB
testcase_47 AC 36 ms
52,632 KB
testcase_48 AC 36 ms
53,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, K = map(int, input().split())
K -= 1
X = list(map(int, input().split()))
A = list(map(int, input().split()))
l, r = K, K
ld, rd = X[K] - A[K], X[K] + A[K]
update = True

while update:
    update = False
    
    if l - 1 >= 0 and ld <= X[l-1]:
        update = True
        l -= 1
        ld = min(ld, X[l] - A[l])
        rd = max(rd, X[l] + A[l])
    
    if r + 1 < N and X[r+1] <= rd:
        update = True
        r += 1
        rd = max(rd, X[r] + A[r])
        ld = min(ld, X[r] - A[r])

print(r - l + 1)
0