結果

問題 No.871 かえるのうた
ユーザー AT274_AT274_
提出日時 2019-10-14 22:09:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 538 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,076 KB
最終ジャッジ日時 2024-06-06 21:02:20
合計ジャッジ時間 4,885 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 29 ms
11,136 KB
testcase_09 AC 29 ms
11,136 KB
testcase_10 WA -
testcase_11 AC 28 ms
10,880 KB
testcase_12 AC 40 ms
13,440 KB
testcase_13 AC 31 ms
11,264 KB
testcase_14 AC 103 ms
26,460 KB
testcase_15 AC 103 ms
28,076 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 103 ms
26,576 KB
testcase_20 WA -
testcase_21 AC 76 ms
16,964 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 32 ms
10,880 KB
testcase_26 AC 47 ms
11,904 KB
testcase_27 AC 37 ms
12,800 KB
testcase_28 AC 27 ms
10,880 KB
testcase_29 WA -
testcase_30 AC 168 ms
22,184 KB
testcase_31 WA -
testcase_32 AC 135 ms
21,048 KB
testcase_33 AC 94 ms
25,716 KB
testcase_34 WA -
testcase_35 AC 65 ms
19,300 KB
testcase_36 WA -
testcase_37 AC 110 ms
17,416 KB
testcase_38 AC 214 ms
25,664 KB
testcase_39 AC 195 ms
25,840 KB
testcase_40 WA -
testcase_41 AC 28 ms
10,624 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 28 ms
10,752 KB
testcase_47 AC 27 ms
10,624 KB
testcase_48 AC 27 ms
10,624 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