結果

問題 No.1139 Slime Race
ユーザー noriocnorioc
提出日時 2024-08-06 22:20:50
言語 Elixir
(1.16.2)
結果
AC  
実行時間 1,858 ms / 2,000 ms
コード長 734 bytes
コンパイル時間 1,905 ms
コンパイル使用メモリ 61,524 KB
実行使用メモリ 204,476 KB
最終ジャッジ日時 2024-08-06 22:21:26
合計ジャッジ時間 30,080 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 533 ms
54,060 KB
testcase_01 AC 565 ms
54,064 KB
testcase_02 AC 547 ms
53,740 KB
testcase_03 AC 551 ms
54,412 KB
testcase_04 AC 546 ms
54,464 KB
testcase_05 AC 542 ms
53,748 KB
testcase_06 AC 592 ms
56,332 KB
testcase_07 AC 543 ms
54,052 KB
testcase_08 AC 560 ms
53,948 KB
testcase_09 AC 535 ms
53,508 KB
testcase_10 AC 1,528 ms
141,516 KB
testcase_11 AC 1,437 ms
152,996 KB
testcase_12 AC 1,858 ms
176,172 KB
testcase_13 AC 569 ms
54,496 KB
testcase_14 AC 1,588 ms
168,840 KB
testcase_15 AC 1,688 ms
165,276 KB
testcase_16 AC 1,670 ms
194,264 KB
testcase_17 AC 1,698 ms
180,808 KB
testcase_18 AC 1,586 ms
143,588 KB
testcase_19 AC 1,039 ms
132,656 KB
testcase_20 AC 1,116 ms
115,212 KB
testcase_21 AC 1,393 ms
157,048 KB
testcase_22 AC 1,543 ms
177,360 KB
testcase_23 AC 1,807 ms
204,476 KB
testcase_24 AC 556 ms
53,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  @inf 10 ** 12
  def main do
    [n, d] = li()
    xs = li()
    vs = li()
    ans = bsearch(@inf, 0, @inf, n, d, xs, vs)
    IO.puts ans
  end

  def f(t, vs) do
    Enum.map(vs, fn v -> v * t end) |> Enum.sum
  end

  def bsearch(res, lo, hi, n, d, xs, vs) do
    if lo > hi do
      res
    else
      m = div(lo + hi, 2)
      s = f(m, vs)
      if s >= d do
        bsearch(min(res, m), lo, m-1, n, d, xs, vs)
      else
        bsearch(res, m+1, hi, n, d, xs, vs)
      end
    end
  end
end
0