結果

問題 No.5 数字のブロック
ユーザー 3qvwn3qvwn
提出日時 2019-07-01 23:48:15
言語 Elixir
(1.16.2)
結果
AC  
実行時間 736 ms / 5,000 ms
コード長 459 bytes
コンパイル時間 1,030 ms
コンパイル使用メモリ 62,496 KB
実行使用メモリ 58,336 KB
最終ジャッジ日時 2024-06-09 22:44:02
合計ジャッジ時間 25,328 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 629 ms
54,808 KB
testcase_01 AC 623 ms
54,820 KB
testcase_02 AC 633 ms
54,416 KB
testcase_03 AC 726 ms
56,244 KB
testcase_04 AC 632 ms
54,928 KB
testcase_05 AC 687 ms
56,908 KB
testcase_06 AC 674 ms
55,272 KB
testcase_07 AC 673 ms
55,496 KB
testcase_08 AC 684 ms
56,496 KB
testcase_09 AC 644 ms
55,000 KB
testcase_10 AC 690 ms
58,144 KB
testcase_11 AC 680 ms
55,336 KB
testcase_12 AC 705 ms
56,788 KB
testcase_13 AC 714 ms
57,076 KB
testcase_14 AC 644 ms
53,728 KB
testcase_15 AC 658 ms
54,120 KB
testcase_16 AC 714 ms
57,656 KB
testcase_17 AC 715 ms
58,336 KB
testcase_18 AC 736 ms
58,140 KB
testcase_19 AC 716 ms
58,320 KB
testcase_20 AC 640 ms
54,248 KB
testcase_21 AC 633 ms
54,404 KB
testcase_22 AC 643 ms
54,312 KB
testcase_23 AC 654 ms
54,772 KB
testcase_24 AC 656 ms
54,116 KB
testcase_25 AC 642 ms
54,732 KB
testcase_26 AC 651 ms
54,124 KB
testcase_27 AC 650 ms
54,836 KB
testcase_28 AC 663 ms
54,044 KB
testcase_29 AC 663 ms
54,824 KB
testcase_30 AC 636 ms
55,164 KB
testcase_31 AC 639 ms
53,880 KB
testcase_32 AC 652 ms
54,080 KB
testcase_33 AC 661 ms
54,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    l = IO.gets("") |> String.trim |> String.to_integer
    _ = IO.gets("")
    w = IO.gets("") |> String.trim |> String.split |> Enum.map(&String.to_integer(&1)) |> Enum.sort
    sum(w, 0, l, 0) |> IO.puts
  end
  
  def sum([], _, _, count) do
   count
  end
  
  def sum([head | tail], total, l, count) when total+head <= l do
    sum(tail, total + head, l, count+1)
  end
  
  def sum(_, _, _, count) do
    count
  end
end
0