結果

問題 No.871 かえるのうた
ユーザー anagohirameanagohirame
提出日時 2019-08-30 22:48:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 416 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,360 KB
最終ジャッジ日時 2024-11-22 01:47:15
合計ジャッジ時間 5,244 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 WA -
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 WA -
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 33 ms
10,880 KB
testcase_09 AC 34 ms
11,008 KB
testcase_10 AC 32 ms
10,624 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 45 ms
13,312 KB
testcase_13 AC 35 ms
11,392 KB
testcase_14 AC 106 ms
26,452 KB
testcase_15 AC 105 ms
28,132 KB
testcase_16 AC 184 ms
27,324 KB
testcase_17 AC 100 ms
25,304 KB
testcase_18 AC 44 ms
13,208 KB
testcase_19 WA -
testcase_20 AC 47 ms
12,044 KB
testcase_21 AC 73 ms
16,228 KB
testcase_22 AC 32 ms
10,752 KB
testcase_23 AC 32 ms
10,624 KB
testcase_24 AC 32 ms
10,752 KB
testcase_25 AC 35 ms
11,008 KB
testcase_26 AC 47 ms
12,032 KB
testcase_27 AC 42 ms
12,800 KB
testcase_28 AC 32 ms
10,752 KB
testcase_29 AC 66 ms
17,824 KB
testcase_30 AC 138 ms
22,684 KB
testcase_31 AC 35 ms
11,136 KB
testcase_32 AC 117 ms
20,396 KB
testcase_33 WA -
testcase_34 AC 49 ms
14,408 KB
testcase_35 AC 75 ms
19,292 KB
testcase_36 AC 89 ms
22,076 KB
testcase_37 AC 92 ms
17,540 KB
testcase_38 AC 171 ms
26,556 KB
testcase_39 WA -
testcase_40 AC 116 ms
17,324 KB
testcase_41 AC 31 ms
10,624 KB
testcase_42 AC 122 ms
17,324 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 31 ms
10,624 KB
testcase_47 AC 31 ms
10,752 KB
testcase_48 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
x = list(map(int, input().split()))
a = list(map(int, input().split()))
cur_back, cur_front = k-1, k-1
lm, rm = x[k-1]-a[k-1], x[k-1]+a[k-1]
while cur_back > 0 and lm <= x[cur_back-1]:
    cur_back -= 1
    lm = min(lm, x[cur_back]-a[cur_back])
while cur_front < n-1 and rm >= x[cur_front+1]:
    cur_front += 1
    rm = max(rm, x[cur_front]+a[cur_front])
print(cur_front-cur_back+1)
0