結果

問題 No.871 かえるのうた
ユーザー vwxyzvwxyz
提出日時 2024-04-09 10:15:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,908 KB
最終ジャッジ日時 2024-10-01 17:10:54
合計ジャッジ時間 5,433 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,496 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 33 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 33 ms
11,136 KB
testcase_09 AC 33 ms
11,264 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 45 ms
13,312 KB
testcase_13 AC 34 ms
11,136 KB
testcase_14 AC 104 ms
27,852 KB
testcase_15 AC 105 ms
27,812 KB
testcase_16 AC 243 ms
28,908 KB
testcase_17 AC 99 ms
26,356 KB
testcase_18 AC 42 ms
13,192 KB
testcase_19 AC 113 ms
28,104 KB
testcase_20 AC 48 ms
11,928 KB
testcase_21 AC 82 ms
15,992 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 31 ms
10,752 KB
testcase_25 AC 35 ms
10,880 KB
testcase_26 AC 51 ms
11,904 KB
testcase_27 AC 40 ms
12,800 KB
testcase_28 AC 31 ms
10,624 KB
testcase_29 AC 64 ms
17,576 KB
testcase_30 AC 184 ms
22,604 KB
testcase_31 AC 32 ms
11,008 KB
testcase_32 AC 155 ms
20,908 KB
testcase_33 AC 102 ms
26,544 KB
testcase_34 AC 48 ms
14,832 KB
testcase_35 AC 73 ms
19,932 KB
testcase_36 AC 88 ms
22,200 KB
testcase_37 AC 119 ms
17,280 KB
testcase_38 AC 234 ms
26,864 KB
testcase_39 AC 213 ms
25,832 KB
testcase_40 AC 158 ms
17,688 KB
testcase_41 AC 30 ms
10,752 KB
testcase_42 AC 153 ms
17,944 KB
testcase_43 AC 30 ms
10,624 KB
testcase_44 AC 32 ms
10,624 KB
testcase_45 AC 33 ms
10,752 KB
testcase_46 AC 30 ms
10,624 KB
testcase_47 AC 31 ms
10,624 KB
testcase_48 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
K-=1
X=list(map(int,input().split()))
A=list(map(int,input().split()))
l=K
r=K+1
mi,ma=X[K]-A[K],X[K]+A[K]+1
while l and mi<=X[l-1] or r<N and X[r]<ma:
	if l and mi<=X[l-1]:
		l-=1
		mi=min(mi,X[l]-A[l])
		ma=max(ma,X[l]+A[l]+1)
	else:
		mi=min(mi,X[r]-A[r])
		ma=max(ma,X[r]+A[r]+1)
		r+=1
ans=r-l
print(ans)
0