結果

問題 No.871 かえるのうた
ユーザー ntudantuda
提出日時 2024-05-22 19:21:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 100,516 KB
最終ジャッジ日時 2024-05-22 19:21:59
合計ジャッジ時間 4,992 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,572 KB
testcase_01 AC 32 ms
52,856 KB
testcase_02 AC 33 ms
52,072 KB
testcase_03 AC 34 ms
53,672 KB
testcase_04 AC 35 ms
52,568 KB
testcase_05 AC 33 ms
52,848 KB
testcase_06 AC 33 ms
53,108 KB
testcase_07 AC 33 ms
52,464 KB
testcase_08 AC 37 ms
60,792 KB
testcase_09 AC 37 ms
60,392 KB
testcase_10 AC 36 ms
58,696 KB
testcase_11 AC 36 ms
59,888 KB
testcase_12 AC 43 ms
68,584 KB
testcase_13 AC 38 ms
60,304 KB
testcase_14 AC 85 ms
93,368 KB
testcase_15 AC 80 ms
93,428 KB
testcase_16 AC 100 ms
100,516 KB
testcase_17 AC 81 ms
95,184 KB
testcase_18 AC 43 ms
68,280 KB
testcase_19 AC 92 ms
94,108 KB
testcase_20 AC 45 ms
65,928 KB
testcase_21 AC 67 ms
85,528 KB
testcase_22 AC 36 ms
52,960 KB
testcase_23 AC 34 ms
52,768 KB
testcase_24 AC 34 ms
52,736 KB
testcase_25 AC 41 ms
62,380 KB
testcase_26 AC 44 ms
65,776 KB
testcase_27 AC 41 ms
66,288 KB
testcase_28 AC 34 ms
52,004 KB
testcase_29 AC 59 ms
88,004 KB
testcase_30 AC 81 ms
97,844 KB
testcase_31 AC 40 ms
59,940 KB
testcase_32 AC 79 ms
94,980 KB
testcase_33 AC 80 ms
96,560 KB
testcase_34 AC 42 ms
71,196 KB
testcase_35 AC 65 ms
88,716 KB
testcase_36 AC 72 ms
98,772 KB
testcase_37 AC 67 ms
87,088 KB
testcase_38 AC 90 ms
95,196 KB
testcase_39 AC 96 ms
93,120 KB
testcase_40 AC 62 ms
89,468 KB
testcase_41 AC 35 ms
52,284 KB
testcase_42 AC 64 ms
93,460 KB
testcase_43 AC 34 ms
52,664 KB
testcase_44 AC 34 ms
52,660 KB
testcase_45 AC 41 ms
61,248 KB
testcase_46 AC 35 ms
52,620 KB
testcase_47 AC 32 ms
52,516 KB
testcase_48 AC 33 ms
52,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
X = list(map(int, input().split()))
A = list(map(int, input().split()))
K -= 1
Q = [K]
lp = X[K]
rp = X[K]
li = K
ri = K
rlimit = K
ans = 0
while Q:
    x = Q.pop()
    if X[x] - A[x] < lp:
        lp = X[x] - A[x]
        while 0 < li and lp <= X[li - 1]:
            li -= 1
            Q.append(li)
    if rp < X[x] + A[x]:
        rp = X[x] + A[x]
        while ri < N - 1 and X[ri + 1] <= rp:
            ri += 1
            Q.append(ri)
print(ri - li + 1)
0