結果

問題 No.989 N×Mマス計算(K以上)
ユーザー le_panda_noirle_panda_noir
提出日時 2020-02-20 11:56:08
言語 Elixir
(1.16.2)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 911 bytes
コンパイル時間 1,289 ms
コンパイル使用メモリ 63,024 KB
実行使用メモリ 106,936 KB
最終ジャッジ日時 2024-06-09 23:02:21
合計ジャッジ時間 13,441 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 645 ms
54,412 KB
testcase_01 AC 649 ms
54,476 KB
testcase_02 AC 650 ms
53,932 KB
testcase_03 AC 656 ms
54,668 KB
testcase_04 AC 660 ms
53,928 KB
testcase_05 AC 646 ms
54,196 KB
testcase_06 AC 649 ms
53,816 KB
testcase_07 AC 643 ms
54,200 KB
testcase_08 AC 653 ms
54,008 KB
testcase_09 AC 652 ms
53,676 KB
testcase_10 TLE -
testcase_11 AC 1,853 ms
106,936 KB
testcase_12 TLE -
testcase_13 AC 1,158 ms
99,200 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def lower_bound(list, val, l \\ -1, r \\ -1) do
    if r == -1 do
      lower_bound(list, val, l, map_size(list))
    else
      m = div(l + r, 2)
      if (r - l) <= 1 do
        r
      else
        cond do
          list[m] < val -> lower_bound(list, val, m, r)
          list[m] >= val -> lower_bound(list, val, l, m)
        end
      end
    end
  end
  def main do
    toi = &String.to_integer/1
    split = &String.split/1

    [n, _m, k] = IO.gets("") |> split.() |> Enum.map(toi)
    [op | b] = IO.gets("") |> split.()
    b = Enum.map(b, toi) |> Enum.sort |> Enum.with_index |> Enum.reduce(%{}, fn({x, index}, acc) -> Map.put(acc, index, x) end)

    Enum.map(1..n, fn _ ->
      a = IO.gets("") |> String.trim |> toi.()
      if op == "+", do: map_size(b) - lower_bound(b, k-a),
      else: map_size(b) - lower_bound(b, Float.ceil(k/a))
    end) |> Enum.sum |> IO.puts
  end
end
0