結果

問題 No.871 かえるのうた
ユーザー O2MTO2MT
提出日時 2020-08-24 12:45:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 548 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 99,128 KB
最終ジャッジ日時 2024-11-06 10:14:06
合計ジャッジ時間 4,570 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 38 ms
52,548 KB
testcase_04 AC 39 ms
52,208 KB
testcase_05 AC 38 ms
53,484 KB
testcase_06 AC 37 ms
51,884 KB
testcase_07 AC 36 ms
52,856 KB
testcase_08 AC 43 ms
59,160 KB
testcase_09 AC 40 ms
60,212 KB
testcase_10 AC 42 ms
58,480 KB
testcase_11 AC 42 ms
59,040 KB
testcase_12 AC 48 ms
69,496 KB
testcase_13 AC 45 ms
60,564 KB
testcase_14 AC 94 ms
93,112 KB
testcase_15 AC 93 ms
93,352 KB
testcase_16 AC 105 ms
94,604 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 101 ms
93,968 KB
testcase_20 AC 50 ms
66,288 KB
testcase_21 AC 74 ms
86,000 KB
testcase_22 AC 38 ms
52,744 KB
testcase_23 WA -
testcase_24 AC 38 ms
53,024 KB
testcase_25 AC 45 ms
61,472 KB
testcase_26 AC 47 ms
64,808 KB
testcase_27 AC 45 ms
65,952 KB
testcase_28 AC 38 ms
53,428 KB
testcase_29 WA -
testcase_30 AC 88 ms
97,876 KB
testcase_31 WA -
testcase_32 AC 84 ms
94,616 KB
testcase_33 AC 91 ms
96,344 KB
testcase_34 WA -
testcase_35 AC 68 ms
88,520 KB
testcase_36 WA -
testcase_37 AC 71 ms
85,276 KB
testcase_38 AC 97 ms
95,236 KB
testcase_39 AC 97 ms
93,196 KB
testcase_40 WA -
testcase_41 AC 38 ms
52,156 KB
testcase_42 AC 66 ms
87,920 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 38 ms
52,504 KB
testcase_47 AC 38 ms
52,616 KB
testcase_48 AC 37 ms
52,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
X = list(map(int,input().split()))
A = list(map(int,input().split()))
kukan = [X[K-1]-A[K-1], X[K-1]+A[K-1]]
l = r = K
if N == 1:
  print(1)
  exit()
flg = True
while flg:
  flg = False
  while l >= 1 and kukan[0] <= X[l-1] <= kukan[1]:
    l-=1
    kukan[0] = min(kukan[0], X[l]-A[l])
    kukan[1] = max(kukan[1], X[l]+A[l])
    flg = True
  while r <= N-2 and kukan[0] <= X[r+1] <= kukan[1]:
    r+=1
    kukan[0] = min(kukan[0], X[r]-A[r])
    kukan[1] = max(kukan[1], X[r]+A[r])
    flg = True
print(r-l+1)
      
0