結果

問題 No.871 かえるのうた
ユーザー 👑 obakyanobakyan
提出日時 2019-08-30 21:40:17
言語 Lua
(LuaJit 2.1.1696795921)
結果
TLE  
実行時間 -
コード長 567 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 824,352 KB
最終ジャッジ日時 2024-11-21 22:19:30
合計ジャッジ時間 44,771 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 2 ms
10,496 KB
testcase_04 TLE -
testcase_05 AC 1 ms
9,380 KB
testcase_06 TLE -
testcase_07 AC 1 ms
10,496 KB
testcase_08 MLE -
testcase_09 AC 4 ms
12,068 KB
testcase_10 TLE -
testcase_11 AC 3 ms
13,636 KB
testcase_12 AC 15 ms
271,504 KB
testcase_13 AC 5 ms
13,636 KB
testcase_14 AC 75 ms
13,440 KB
testcase_15 AC 75 ms
17,700 KB
testcase_16 MLE -
testcase_17 AC 135 ms
17,316 KB
testcase_18 AC 17 ms
9,124 KB
testcase_19 AC 77 ms
17,824 KB
testcase_20 MLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 2 ms
6,688 KB
testcase_24 TLE -
testcase_25 AC 4 ms
6,688 KB
testcase_26 AC 10 ms
6,688 KB
testcase_27 AC 12 ms
6,692 KB
testcase_28 AC 1 ms
6,688 KB
testcase_29 AC 39 ms
7,552 KB
testcase_30 AC 70 ms
10,368 KB
testcase_31 AC 4 ms
6,688 KB
testcase_32 AC 51 ms
9,216 KB
testcase_33 AC 68 ms
10,880 KB
testcase_34 AC 19 ms
6,688 KB
testcase_35 AC 42 ms
7,424 KB
testcase_36 AC 56 ms
9,600 KB
testcase_37 AC 35 ms
6,692 KB
testcase_38 AC 76 ms
11,008 KB
testcase_39 AC 73 ms
10,752 KB
testcase_40 TLE -
testcase_41 AC 1 ms
6,688 KB
testcase_42 MLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 MLE -
testcase_46 AC 8 ms
6,688 KB
testcase_47 AC 2 ms
6,688 KB
testcase_48 AC 2 ms
140,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n, k = io.read("*n", "*n")
local x, a = {}, {}
for i = 1, n do
  x[i] = 0LL + io.read("*n")
end
for i = 1, n do
  a[i] = 0LL + io.read("*n")
end

local tasks = {k}
local l, r = k, k
while 0 < #tasks do
  local idx = tasks[#tasks]
  table.remove(tasks)
  for ir = r + 1, n do
    if x[ir] <= x[idx] + a[idx] then
      table.insert(tasks, ir)
    else
      r = ir - 1
      break
    end
  end
  for il = l - 1, 1, -1 do
    if x[idx] - a[idx] <= x[il] then
      table.insert(tasks, il)
    else
      l = il + 1
      break
    end
  end
end
print(r - l + 1)
0