結果

問題 No.5 数字のブロック
ユーザー asatakeasatake
提出日時 2018-08-12 11:48:45
言語 Elixir
(1.16.2)
結果
RE  
実行時間 -
コード長 444 bytes
コンパイル時間 1,201 ms
コンパイル使用メモリ 63,508 KB
実行使用メモリ 60,304 KB
最終ジャッジ日時 2024-06-09 22:08:33
合計ジャッジ時間 26,364 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 646 ms
54,740 KB
testcase_01 AC 643 ms
54,480 KB
testcase_02 RE -
testcase_03 AC 706 ms
56,460 KB
testcase_04 AC 658 ms
55,928 KB
testcase_05 AC 703 ms
57,708 KB
testcase_06 AC 691 ms
55,720 KB
testcase_07 AC 699 ms
59,744 KB
testcase_08 AC 691 ms
56,032 KB
testcase_09 AC 648 ms
54,500 KB
testcase_10 AC 698 ms
58,032 KB
testcase_11 AC 689 ms
56,476 KB
testcase_12 AC 698 ms
56,280 KB
testcase_13 AC 711 ms
57,636 KB
testcase_14 AC 643 ms
54,484 KB
testcase_15 AC 641 ms
55,108 KB
testcase_16 AC 709 ms
58,888 KB
testcase_17 AC 708 ms
58,364 KB
testcase_18 AC 711 ms
60,304 KB
testcase_19 AC 720 ms
58,376 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 657 ms
54,260 KB
testcase_24 AC 668 ms
54,288 KB
testcase_25 AC 650 ms
55,256 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 641 ms
56,368 KB
testcase_30 AC 651 ms
55,064 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main() do
    l = IO.gets("") |> String.trim |> String.to_integer
    n = IO.gets("") |> String.trim |> String.to_integer
    w = IO.gets("")
    |> String.trim
    |> String.split
    |> Enum.map(fn x -> String.to_integer(x) end)
    |> Enum.sort

    IO.inspect n - calc(0, w, l)
  end

  defp calc(c, [h | t], l) do
    cond do
      c + h <= l -> calc(c + h, t, l)
      true -> Enum.count(t) + 1
    end
  end

end
0