結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 549 ms
53,692 KB
testcase_01 AC 545 ms
53,936 KB
testcase_02 AC 555 ms
54,404 KB
testcase_03 AC 564 ms
53,804 KB
testcase_04 AC 568 ms
53,680 KB
testcase_05 AC 551 ms
53,672 KB
testcase_06 AC 595 ms
55,072 KB
testcase_07 AC 592 ms
53,808 KB
testcase_08 AC 572 ms
53,676 KB
testcase_09 AC 579 ms
53,760 KB
testcase_10 AC 1,683 ms
165,660 KB
testcase_11 AC 1,482 ms
133,124 KB
testcase_12 AC 1,949 ms
170,356 KB
testcase_13 AC 558 ms
53,812 KB
testcase_14 AC 1,558 ms
182,540 KB
testcase_15 AC 1,783 ms
166,348 KB
testcase_16 AC 1,747 ms
167,020 KB
testcase_17 AC 1,552 ms
160,104 KB
testcase_18 AC 1,479 ms
160,016 KB
testcase_19 AC 1,161 ms
132,076 KB
testcase_20 AC 1,170 ms
115,284 KB
testcase_21 AC 1,575 ms
139,616 KB
testcase_22 AC 1,711 ms
182,504 KB
testcase_23 AC 1,806 ms
197,872 KB
testcase_24 AC 571 ms
53,928 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