結果

問題 No.871 かえるのうた
ユーザー ああいいああいい
提出日時 2022-01-01 22:28:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 415 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,368 KB
最終ジャッジ日時 2024-10-10 16:10:59
合計ジャッジ時間 5,971 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 WA -
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 WA -
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 31 ms
11,136 KB
testcase_09 AC 31 ms
11,136 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 42 ms
13,312 KB
testcase_13 AC 32 ms
11,264 KB
testcase_14 AC 116 ms
27,848 KB
testcase_15 AC 114 ms
27,952 KB
testcase_16 AC 145 ms
25,916 KB
testcase_17 AC 113 ms
26,360 KB
testcase_18 AC 45 ms
13,080 KB
testcase_19 WA -
testcase_20 AC 38 ms
11,904 KB
testcase_21 AC 66 ms
16,000 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 29 ms
10,752 KB
testcase_24 AC 29 ms
10,496 KB
testcase_25 AC 32 ms
10,880 KB
testcase_26 AC 39 ms
11,904 KB
testcase_27 AC 41 ms
12,800 KB
testcase_28 AC 29 ms
10,624 KB
testcase_29 AC 71 ms
17,776 KB
testcase_30 AC 109 ms
22,748 KB
testcase_31 AC 31 ms
11,008 KB
testcase_32 AC 95 ms
21,044 KB
testcase_33 WA -
testcase_34 AC 51 ms
14,856 KB
testcase_35 AC 78 ms
19,076 KB
testcase_36 AC 94 ms
22,336 KB
testcase_37 AC 73 ms
17,300 KB
testcase_38 AC 133 ms
26,752 KB
testcase_39 WA -
testcase_40 AC 101 ms
17,816 KB
testcase_41 AC 29 ms
10,752 KB
testcase_42 AC 91 ms
17,820 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 28 ms
10,496 KB
testcase_47 AC 28 ms
10,624 KB
testcase_48 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
X = list(map(int,input().split()))
A = list(map(int,input().split()))

ans = 0

now = X[K-1] + A[K-1]
for i in range(K,N):
    if X[i] <= now:
        ans += 1
        if X[i] + A[i] > now:
            now = X[i] + A[i]
now = X[K-1] - A[K-1]
for i in reversed(range(K-1)):
    if X[i] >= now:
        ans += 1
        if X[i] - A[i] < now:
            now = X[i] - A[i]
print(ans + 1)
0