結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 34 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 33 ms
11,136 KB
testcase_09 AC 34 ms
11,264 KB
testcase_10 AC 33 ms
10,752 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 44 ms
13,440 KB
testcase_13 AC 35 ms
11,392 KB
testcase_14 AC 107 ms
27,880 KB
testcase_15 AC 107 ms
28,144 KB
testcase_16 AC 273 ms
28,860 KB
testcase_17 AC 103 ms
26,372 KB
testcase_18 AC 43 ms
13,212 KB
testcase_19 AC 114 ms
28,248 KB
testcase_20 AC 50 ms
11,944 KB
testcase_21 AC 83 ms
16,136 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 31 ms
10,624 KB
testcase_25 AC 36 ms
10,880 KB
testcase_26 AC 55 ms
12,032 KB
testcase_27 AC 42 ms
12,928 KB
testcase_28 AC 32 ms
10,752 KB
testcase_29 AC 66 ms
17,848 KB
testcase_30 AC 202 ms
22,960 KB
testcase_31 AC 33 ms
11,136 KB
testcase_32 AC 158 ms
19,980 KB
testcase_33 AC 105 ms
26,560 KB
testcase_34 AC 49 ms
14,724 KB
testcase_35 AC 73 ms
19,308 KB
testcase_36 AC 89 ms
22,344 KB
testcase_37 AC 125 ms
17,188 KB
testcase_38 AC 247 ms
27,016 KB
testcase_39 AC 218 ms
25,892 KB
testcase_40 AC 166 ms
17,832 KB
testcase_41 AC 31 ms
10,752 KB
testcase_42 AC 174 ms
17,960 KB
testcase_43 AC 31 ms
10,624 KB
testcase_44 AC 31 ms
10,624 KB
testcase_45 AC 35 ms
10,752 KB
testcase_46 AC 32 ms
10,752 KB
testcase_47 AC 31 ms
10,752 KB
testcase_48 AC 30 ms
10,880 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