結果

問題 No.5 数字のブロック
ユーザー gemmarogemmaro
提出日時 2020-04-17 08:59:08
言語 Elixir
(1.16.2)
結果
AC  
実行時間 666 ms / 5,000 ms
コード長 516 bytes
コンパイル時間 1,015 ms
コンパイル使用メモリ 65,640 KB
実行使用メモリ 60,172 KB
最終ジャッジ日時 2024-06-09 23:28:44
合計ジャッジ時間 23,002 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 562 ms
55,104 KB
testcase_01 AC 559 ms
55,272 KB
testcase_02 AC 580 ms
55,104 KB
testcase_03 AC 631 ms
57,320 KB
testcase_04 AC 606 ms
59,660 KB
testcase_05 AC 631 ms
58,608 KB
testcase_06 AC 638 ms
56,676 KB
testcase_07 AC 630 ms
58,120 KB
testcase_08 AC 622 ms
58,652 KB
testcase_09 AC 579 ms
55,760 KB
testcase_10 AC 655 ms
60,172 KB
testcase_11 AC 628 ms
56,896 KB
testcase_12 AC 631 ms
57,204 KB
testcase_13 AC 632 ms
57,720 KB
testcase_14 AC 558 ms
54,744 KB
testcase_15 AC 589 ms
54,456 KB
testcase_16 AC 664 ms
58,172 KB
testcase_17 AC 666 ms
59,024 KB
testcase_18 AC 635 ms
58,852 KB
testcase_19 AC 647 ms
58,212 KB
testcase_20 AC 572 ms
54,700 KB
testcase_21 AC 581 ms
54,652 KB
testcase_22 AC 605 ms
54,632 KB
testcase_23 AC 594 ms
54,972 KB
testcase_24 AC 590 ms
54,516 KB
testcase_25 AC 574 ms
55,416 KB
testcase_26 AC 569 ms
54,552 KB
testcase_27 AC 593 ms
54,772 KB
testcase_28 AC 565 ms
54,848 KB
testcase_29 AC 627 ms
57,488 KB
testcase_30 AC 589 ms
55,012 KB
testcase_31 AC 586 ms
54,580 KB
testcase_32 AC 556 ms
54,768 KB
testcase_33 AC 567 ms
54,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    1..3
    |> Enum.map(fn _ ->
      IO.read(:line)
      |> String.trim()
    end)
    |> solve
    |> IO.puts()
  end

  defp solve([l, _, w]) do
    solve_rec(
      w |> String.split() |> Enum.map(&String.to_integer/1) |> Enum.sort(),
      0,
      l |> String.to_integer()
    )
  end

  defp solve_rec(w, c, n) do
    cond do
      w |> Enum.empty?() || n < w |> hd ->
        c

      true ->
        solve_rec(w |> Enum.slice(1..-1), c + 1, n - (w |> hd))
    end
  end
end
0