結果

問題 No.871 かえるのうた
ユーザー pluto77pluto77
提出日時 2020-06-29 13:29:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,244 KB
最終ジャッジ日時 2024-05-07 16:40:01
合計ジャッジ時間 5,030 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 34 ms
11,136 KB
testcase_09 AC 30 ms
11,392 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 27 ms
11,008 KB
testcase_12 AC 41 ms
13,440 KB
testcase_13 AC 31 ms
11,392 KB
testcase_14 AC 96 ms
27,996 KB
testcase_15 AC 96 ms
26,804 KB
testcase_16 AC 232 ms
25,916 KB
testcase_17 AC 93 ms
26,464 KB
testcase_18 AC 38 ms
13,212 KB
testcase_19 AC 103 ms
28,244 KB
testcase_20 AC 44 ms
12,200 KB
testcase_21 AC 73 ms
16,256 KB
testcase_22 AC 28 ms
10,752 KB
testcase_23 AC 26 ms
10,880 KB
testcase_24 AC 27 ms
10,752 KB
testcase_25 AC 31 ms
11,008 KB
testcase_26 AC 45 ms
12,032 KB
testcase_27 AC 37 ms
12,928 KB
testcase_28 AC 27 ms
10,752 KB
testcase_29 AC 60 ms
17,840 KB
testcase_30 AC 176 ms
22,956 KB
testcase_31 AC 30 ms
11,136 KB
testcase_32 AC 138 ms
21,304 KB
testcase_33 AC 95 ms
26,680 KB
testcase_34 AC 45 ms
14,976 KB
testcase_35 AC 67 ms
19,308 KB
testcase_36 AC 81 ms
22,340 KB
testcase_37 AC 108 ms
17,416 KB
testcase_38 AC 215 ms
27,136 KB
testcase_39 AC 189 ms
25,896 KB
testcase_40 AC 143 ms
17,952 KB
testcase_41 AC 28 ms
10,880 KB
testcase_42 AC 150 ms
17,952 KB
testcase_43 AC 28 ms
10,880 KB
testcase_44 AC 28 ms
10,752 KB
testcase_45 AC 31 ms
10,880 KB
testcase_46 AC 26 ms
10,880 KB
testcase_47 AC 27 ms
10,880 KB
testcase_48 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
x=list(map(int,input().split()))
a=list(map(int,input().split()))
k-=1
l=r=k
ld=x[k]-a[k]
rd=x[k]+a[k]
f=True
while f:
 f=False
 while l-1>=0 and ld<=x[l-1]:
  f=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]:
  f=True
  r+=1
  ld=min(ld,x[r]-a[r])
  rd=max(rd,x[r]+a[r])
print(r-l+1)
0