結果

問題 No.871 かえるのうた
ユーザー pluto77pluto77
提出日時 2020-06-29 13:29:22
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 28,120 KB
最終ジャッジ日時 2024-11-30 11:02:41
合計ジャッジ時間 5,150 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 32 ms
11,008 KB
testcase_09 AC 32 ms
11,136 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 31 ms
10,880 KB
testcase_12 AC 43 ms
13,440 KB
testcase_13 AC 34 ms
11,520 KB
testcase_14 AC 103 ms
27,872 KB
testcase_15 AC 103 ms
26,672 KB
testcase_16 AC 243 ms
25,864 KB
testcase_17 AC 100 ms
26,492 KB
testcase_18 AC 42 ms
13,084 KB
testcase_19 AC 111 ms
28,120 KB
testcase_20 AC 48 ms
12,028 KB
testcase_21 AC 80 ms
16,256 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 30 ms
10,880 KB
testcase_25 AC 35 ms
11,008 KB
testcase_26 AC 51 ms
11,904 KB
testcase_27 AC 40 ms
12,800 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 65 ms
17,836 KB
testcase_30 AC 178 ms
22,880 KB
testcase_31 AC 31 ms
11,136 KB
testcase_32 AC 142 ms
21,048 KB
testcase_33 AC 102 ms
26,552 KB
testcase_34 AC 48 ms
14,976 KB
testcase_35 AC 72 ms
19,336 KB
testcase_36 AC 87 ms
22,336 KB
testcase_37 AC 116 ms
17,288 KB
testcase_38 AC 226 ms
27,016 KB
testcase_39 AC 202 ms
25,756 KB
testcase_40 AC 156 ms
17,820 KB
testcase_41 AC 29 ms
10,752 KB
testcase_42 AC 163 ms
17,820 KB
testcase_43 AC 30 ms
10,752 KB
testcase_44 AC 30 ms
10,624 KB
testcase_45 AC 33 ms
10,880 KB
testcase_46 AC 30 ms
10,880 KB
testcase_47 AC 29 ms
10,624 KB
testcase_48 AC 30 ms
10,880 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