結果

問題 No.871 かえるのうた
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-07 19:37:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 100,736 KB
最終ジャッジ日時 2024-05-07 16:42:34
合計ジャッジ時間 4,721 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 42 ms
59,648 KB
testcase_09 AC 43 ms
60,160 KB
testcase_10 AC 42 ms
58,240 KB
testcase_11 AC 43 ms
58,880 KB
testcase_12 AC 53 ms
69,504 KB
testcase_13 AC 45 ms
60,928 KB
testcase_14 AC 108 ms
98,524 KB
testcase_15 AC 108 ms
98,228 KB
testcase_16 AC 127 ms
100,364 KB
testcase_17 AC 101 ms
97,168 KB
testcase_18 AC 53 ms
70,272 KB
testcase_19 AC 116 ms
99,960 KB
testcase_20 AC 53 ms
66,432 KB
testcase_21 AC 83 ms
89,728 KB
testcase_22 AC 36 ms
52,312 KB
testcase_23 AC 37 ms
52,224 KB
testcase_24 AC 37 ms
52,224 KB
testcase_25 AC 46 ms
61,568 KB
testcase_26 AC 51 ms
65,280 KB
testcase_27 AC 51 ms
66,432 KB
testcase_28 AC 37 ms
51,712 KB
testcase_29 AC 71 ms
92,160 KB
testcase_30 AC 96 ms
100,224 KB
testcase_31 AC 43 ms
59,564 KB
testcase_32 AC 93 ms
100,736 KB
testcase_33 AC 102 ms
98,176 KB
testcase_34 AC 56 ms
72,948 KB
testcase_35 AC 77 ms
93,824 KB
testcase_36 AC 92 ms
99,712 KB
testcase_37 AC 82 ms
91,904 KB
testcase_38 AC 111 ms
98,068 KB
testcase_39 AC 105 ms
97,552 KB
testcase_40 AC 76 ms
93,824 KB
testcase_41 AC 36 ms
52,096 KB
testcase_42 AC 77 ms
92,672 KB
testcase_43 AC 36 ms
52,096 KB
testcase_44 AC 37 ms
52,352 KB
testcase_45 AC 46 ms
60,880 KB
testcase_46 AC 38 ms
52,480 KB
testcase_47 AC 38 ms
52,096 KB
testcase_48 AC 36 ms
51,712 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]
R = X[K]
i = K
j = K
while i or j < N + 1:
    if i and X[i] >= L:
        ans[i] = 1
        L = min(L, X[i] - A[i])
        R = max(R, X[i] + A[i])
        i -= 1
        continue
    if j < N + 1 and X[j] <= R:
        ans[j] = 1
        L = min(L, X[j] - A[j])
        R = max(R, X[j] + A[j])
        j += 1
        continue
    break


print(sum(ans))
0