結果

問題 No.5 数字のブロック
ユーザー penqenpenqen
提出日時 2021-03-14 03:08:34
言語 Elixir
(1.16.2)
結果
AC  
実行時間 727 ms / 5,000 ms
コード長 423 bytes
コンパイル時間 1,185 ms
コンパイル使用メモリ 65,004 KB
実行使用メモリ 58,224 KB
最終ジャッジ日時 2024-06-10 00:31:09
合計ジャッジ時間 25,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 632 ms
54,488 KB
testcase_01 AC 658 ms
54,688 KB
testcase_02 AC 635 ms
54,708 KB
testcase_03 AC 686 ms
56,552 KB
testcase_04 AC 644 ms
54,900 KB
testcase_05 AC 727 ms
57,164 KB
testcase_06 AC 702 ms
55,268 KB
testcase_07 AC 675 ms
57,876 KB
testcase_08 AC 702 ms
56,244 KB
testcase_09 AC 669 ms
54,388 KB
testcase_10 AC 714 ms
57,988 KB
testcase_11 AC 652 ms
56,548 KB
testcase_12 AC 707 ms
56,780 KB
testcase_13 AC 705 ms
57,032 KB
testcase_14 AC 629 ms
55,324 KB
testcase_15 AC 626 ms
54,104 KB
testcase_16 AC 656 ms
57,940 KB
testcase_17 AC 697 ms
58,224 KB
testcase_18 AC 700 ms
58,216 KB
testcase_19 AC 695 ms
58,104 KB
testcase_20 AC 633 ms
54,860 KB
testcase_21 AC 629 ms
53,736 KB
testcase_22 AC 633 ms
54,812 KB
testcase_23 AC 630 ms
54,288 KB
testcase_24 AC 640 ms
55,112 KB
testcase_25 AC 647 ms
54,172 KB
testcase_26 AC 647 ms
54,216 KB
testcase_27 AC 629 ms
54,808 KB
testcase_28 AC 638 ms
54,004 KB
testcase_29 AC 641 ms
55,244 KB
testcase_30 AC 658 ms
55,156 KB
testcase_31 AC 645 ms
54,480 KB
testcase_32 AC 629 ms
55,064 KB
testcase_33 AC 638 ms
55,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    l = IO.read(:line) |> String.trim() |> String.to_integer()
    IO.read(:line)
    IO.read(:line)
    |> String.trim()
    |> String.split(" ")
    |> Enum.map(&String.to_integer/1)
    |> Enum.sort()
    |> Enum.reduce_while({0, 0}, fn w, {sum, count} = acc ->
      if l < sum + w, do: {:halt, acc}, else: {:cont, {sum + w, count + 1}}
    end)
    |> elem(1)
    |> IO.puts()
  end
end
0