結果

問題 No.871 かえるのうた
ユーザー shoooooshooooo
提出日時 2019-11-28 10:05:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,988 KB
最終ジャッジ日時 2024-11-30 10:58:17
合計ジャッジ時間 5,251 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 32 ms
11,136 KB
testcase_09 AC 33 ms
11,136 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 43 ms
13,568 KB
testcase_13 AC 35 ms
11,264 KB
testcase_14 AC 105 ms
27,876 KB
testcase_15 AC 103 ms
28,088 KB
testcase_16 AC 263 ms
28,988 KB
testcase_17 AC 99 ms
26,436 KB
testcase_18 AC 43 ms
13,212 KB
testcase_19 AC 113 ms
28,248 KB
testcase_20 AC 50 ms
12,072 KB
testcase_21 AC 83 ms
16,260 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 30 ms
10,624 KB
testcase_25 AC 34 ms
11,008 KB
testcase_26 AC 53 ms
12,032 KB
testcase_27 AC 39 ms
12,928 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 65 ms
17,720 KB
testcase_30 AC 198 ms
22,756 KB
testcase_31 AC 32 ms
11,136 KB
testcase_32 AC 159 ms
20,048 KB
testcase_33 AC 103 ms
26,572 KB
testcase_34 AC 48 ms
14,596 KB
testcase_35 AC 72 ms
19,216 KB
testcase_36 AC 88 ms
22,212 KB
testcase_37 AC 125 ms
17,308 KB
testcase_38 AC 245 ms
26,884 KB
testcase_39 AC 214 ms
25,716 KB
testcase_40 AC 168 ms
17,836 KB
testcase_41 AC 30 ms
10,752 KB
testcase_42 AC 172 ms
18,088 KB
testcase_43 AC 30 ms
10,624 KB
testcase_44 AC 31 ms
10,624 KB
testcase_45 AC 34 ms
10,880 KB
testcase_46 AC 30 ms
10,752 KB
testcase_47 AC 30 ms
10,624 KB
testcase_48 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
r=list(map(int,input().split()))
A=list(map(int,input().split()))
K-=1
left=r[K]-A[K]
right=r[K]+A[K]
updated=True
K1=K
while updated:
  updated=False
  while K1-1>=0 and left<=r[K1-1]<=right:
    updated=True
    left=min(r[K1-1]-A[K1-1],left)
    right=max(r[K1-1]+A[K1-1],right)
    K1-=1
  while K+1<=N-1 and r[K+1]<=right:
    updated=True
    right=max(r[K+1]+A[K+1],right)
    left=min(r[K+1]-A[K+1],left)
    K+=1
print(K-K1+1) 
0