結果

問題 No.871 かえるのうた
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-07 19:32:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 486 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 100,884 KB
最終ジャッジ日時 2024-07-04 12:31:28
合計ジャッジ時間 6,075 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 WA -
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 WA -
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 42 ms
59,904 KB
testcase_09 AC 43 ms
60,416 KB
testcase_10 AC 40 ms
57,984 KB
testcase_11 AC 42 ms
58,752 KB
testcase_12 AC 51 ms
69,120 KB
testcase_13 AC 43 ms
60,928 KB
testcase_14 AC 104 ms
97,764 KB
testcase_15 AC 104 ms
98,628 KB
testcase_16 AC 113 ms
99,904 KB
testcase_17 AC 100 ms
97,428 KB
testcase_18 AC 50 ms
70,272 KB
testcase_19 WA -
testcase_20 AC 49 ms
65,536 KB
testcase_21 AC 75 ms
89,344 KB
testcase_22 AC 37 ms
51,968 KB
testcase_23 AC 38 ms
51,968 KB
testcase_24 AC 38 ms
51,840 KB
testcase_25 AC 45 ms
60,672 KB
testcase_26 AC 47 ms
65,024 KB
testcase_27 AC 46 ms
66,560 KB
testcase_28 AC 37 ms
51,968 KB
testcase_29 AC 69 ms
92,416 KB
testcase_30 AC 92 ms
99,712 KB
testcase_31 AC 41 ms
59,392 KB
testcase_32 AC 88 ms
100,884 KB
testcase_33 WA -
testcase_34 AC 53 ms
73,344 KB
testcase_35 AC 73 ms
94,464 KB
testcase_36 AC 90 ms
99,712 KB
testcase_37 AC 77 ms
91,552 KB
testcase_38 AC 107 ms
97,764 KB
testcase_39 WA -
testcase_40 AC 74 ms
92,800 KB
testcase_41 AC 39 ms
52,352 KB
testcase_42 AC 72 ms
92,032 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 38 ms
51,968 KB
testcase_47 AC 38 ms
52,352 KB
testcase_48 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
inf = float("inf")
X = [-inf] + list(map(int, input().split())) + [inf]
A = [-1] + list(map(int, input().split())) + [inf]

ans = [0] * (N + 2)

# left
L = X[K]
i = K
while i > 0:
    if X[i] >= L:
        ans[i] = 1
        L = min(L, X[i] - A[i])
        i -= 1
    else:
        break

# right
R = X[K]
i = K
while i < N + 1:
    if X[i] <= R:
        ans[i] = 1
        R = max(R, X[i] + A[i])
        i += 1
    else:
        break

print(sum(ans))
0