結果

問題 No.871 かえるのうた
ユーザー AT274_AT274_
提出日時 2019-10-14 22:09:11
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 538 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,820 KB
最終ジャッジ日時 2024-12-24 15:19:09
合計ジャッジ時間 5,656 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 34 ms
10,624 KB
testcase_03 AC 34 ms
10,496 KB
testcase_04 WA -
testcase_05 AC 33 ms
10,496 KB
testcase_06 AC 33 ms
10,624 KB
testcase_07 AC 33 ms
10,496 KB
testcase_08 AC 35 ms
10,752 KB
testcase_09 AC 37 ms
11,008 KB
testcase_10 WA -
testcase_11 AC 35 ms
10,624 KB
testcase_12 AC 46 ms
13,312 KB
testcase_13 AC 38 ms
11,136 KB
testcase_14 AC 111 ms
26,396 KB
testcase_15 AC 112 ms
27,820 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 119 ms
26,580 KB
testcase_20 WA -
testcase_21 AC 85 ms
17,076 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 37 ms
10,880 KB
testcase_26 AC 53 ms
11,776 KB
testcase_27 AC 44 ms
12,800 KB
testcase_28 AC 32 ms
10,496 KB
testcase_29 WA -
testcase_30 AC 189 ms
21,976 KB
testcase_31 WA -
testcase_32 AC 155 ms
20,976 KB
testcase_33 AC 112 ms
25,524 KB
testcase_34 WA -
testcase_35 AC 78 ms
19,076 KB
testcase_36 WA -
testcase_37 AC 120 ms
17,044 KB
testcase_38 AC 236 ms
25,468 KB
testcase_39 AC 211 ms
25,580 KB
testcase_40 WA -
testcase_41 AC 32 ms
10,496 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 34 ms
10,624 KB
testcase_47 AC 32 ms
10,496 KB
testcase_48 AC 33 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

l = r = K
ld, rd = X[K - 1] - A[K - 1], X[K - 1] + A[K - 1]


updated = True
while updated:
    updated = False

    while (l - 1 > 0) and (ld <= X[l - 1]):
        updated = 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]):
        updated = True
        r += 1
        ld = min(ld, X[r] - A[r])
        rd = max(rd, X[r] + A[r])

print(r - l + 1)
0