結果

問題 No.5 数字のブロック
ユーザー yukiccoyukicco
提出日時 2018-11-17 17:45:22
言語 Elixir
(1.16.2)
結果
AC  
実行時間 699 ms / 5,000 ms
コード長 552 bytes
コンパイル時間 1,384 ms
コンパイル使用メモリ 63,344 KB
実行使用メモリ 56,044 KB
最終ジャッジ日時 2024-06-09 22:19:36
合計ジャッジ時間 25,008 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 637 ms
54,872 KB
testcase_01 AC 638 ms
53,676 KB
testcase_02 AC 638 ms
53,988 KB
testcase_03 AC 686 ms
54,760 KB
testcase_04 AC 642 ms
55,064 KB
testcase_05 AC 697 ms
55,496 KB
testcase_06 AC 682 ms
54,248 KB
testcase_07 AC 689 ms
54,800 KB
testcase_08 AC 695 ms
54,896 KB
testcase_09 AC 645 ms
54,288 KB
testcase_10 AC 699 ms
55,432 KB
testcase_11 AC 675 ms
54,812 KB
testcase_12 AC 680 ms
55,416 KB
testcase_13 AC 684 ms
55,020 KB
testcase_14 AC 625 ms
54,264 KB
testcase_15 AC 632 ms
55,520 KB
testcase_16 AC 694 ms
55,536 KB
testcase_17 AC 698 ms
55,520 KB
testcase_18 AC 697 ms
55,832 KB
testcase_19 AC 694 ms
56,044 KB
testcase_20 AC 635 ms
55,408 KB
testcase_21 AC 631 ms
54,736 KB
testcase_22 AC 623 ms
54,868 KB
testcase_23 AC 608 ms
54,200 KB
testcase_24 AC 622 ms
54,072 KB
testcase_25 AC 613 ms
55,376 KB
testcase_26 AC 623 ms
53,880 KB
testcase_27 AC 618 ms
55,076 KB
testcase_28 AC 615 ms
54,272 KB
testcase_29 AC 638 ms
54,136 KB
testcase_30 AC 628 ms
54,768 KB
testcase_31 AC 631 ms
53,856 KB
testcase_32 AC 621 ms
54,516 KB
testcase_33 AC 622 ms
55,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
    def numBlock(width, blocks), do: numBlock(width, Enum.sort(blocks), 0, 0)
    defp numBlock(width, blocks, total, acc) do
        if total > width do
            acc - 1
        else
            case blocks do
                [head | tail] -> numBlock(width, tail, total + head, acc + 1)
                _ -> acc
            end
        end
    end
    def main do

        inputs = IO.binread(:all) |> String.split

        [l, _ | ws] = inputs |> Enum.map(&(String.to_integer(&1)))

        IO.puts numBlock(l, ws)

    end
end
0