結果

問題 No.871 かえるのうた
ユーザー yansi819yansi819
提出日時 2024-05-12 16:20:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 561 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 99,556 KB
最終ジャッジ日時 2024-05-12 16:20:37
合計ジャッジ時間 5,869 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,164 KB
testcase_01 AC 36 ms
53,132 KB
testcase_02 AC 36 ms
52,612 KB
testcase_03 AC 34 ms
52,800 KB
testcase_04 AC 36 ms
53,240 KB
testcase_05 AC 36 ms
53,840 KB
testcase_06 AC 36 ms
52,624 KB
testcase_07 AC 36 ms
52,744 KB
testcase_08 AC 40 ms
60,408 KB
testcase_09 AC 39 ms
59,764 KB
testcase_10 AC 40 ms
58,448 KB
testcase_11 AC 40 ms
58,888 KB
testcase_12 AC 46 ms
68,876 KB
testcase_13 AC 41 ms
60,668 KB
testcase_14 AC 92 ms
94,112 KB
testcase_15 AC 85 ms
94,168 KB
testcase_16 AC 96 ms
95,016 KB
testcase_17 AC 85 ms
95,932 KB
testcase_18 AC 45 ms
69,940 KB
testcase_19 AC 92 ms
94,872 KB
testcase_20 AC 46 ms
65,688 KB
testcase_21 AC 70 ms
86,208 KB
testcase_22 AC 35 ms
53,004 KB
testcase_23 AC 35 ms
52,756 KB
testcase_24 AC 35 ms
53,532 KB
testcase_25 AC 43 ms
61,276 KB
testcase_26 AC 44 ms
65,688 KB
testcase_27 AC 42 ms
65,348 KB
testcase_28 AC 35 ms
52,480 KB
testcase_29 AC 60 ms
89,088 KB
testcase_30 AC 84 ms
98,836 KB
testcase_31 AC 39 ms
60,140 KB
testcase_32 AC 78 ms
95,824 KB
testcase_33 AC 87 ms
97,164 KB
testcase_34 AC 48 ms
71,704 KB
testcase_35 AC 66 ms
90,008 KB
testcase_36 AC 81 ms
99,556 KB
testcase_37 AC 66 ms
85,880 KB
testcase_38 AC 92 ms
95,820 KB
testcase_39 AC 90 ms
94,296 KB
testcase_40 AC 64 ms
90,820 KB
testcase_41 AC 35 ms
52,676 KB
testcase_42 AC 62 ms
89,020 KB
testcase_43 AC 36 ms
53,340 KB
testcase_44 AC 35 ms
52,944 KB
testcase_45 AC 43 ms
61,480 KB
testcase_46 AC 38 ms
53,360 KB
testcase_47 AC 38 ms
52,084 KB
testcase_48 AC 35 ms
52,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
X = [0] + list(map(int, input().split()))
A = [0] + list(map(int, input().split()))

L = R = K
Ld, Rd = X[K] - A[K], X[K] + A[K]

flag = True
while flag:
    flag = False
    while L - 1 >= 1 and Ld <= X[L - 1]:
        flag = 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]:
        flag = True
        R += 1
        Rd = max(Rd, X[R] + A[R])
        Ld = min(Ld, X[R] - A[R])
print(R - L + 1)
0