結果
問題 | No.5 数字のブロック |
ユーザー | asatake |
提出日時 | 2018-08-12 12:07:10 |
言語 | Elixir (1.18.1) |
結果 |
AC
|
実行時間 | 598 ms / 5,000 ms |
コード長 | 492 bytes |
コンパイル時間 | 1,113 ms |
コンパイル使用メモリ | 66,536 KB |
実行使用メモリ | 59,228 KB |
最終ジャッジ日時 | 2024-12-31 02:14:08 |
合計ジャッジ時間 | 22,236 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 573 ms
54,280 KB |
testcase_01 | AC | 566 ms
54,360 KB |
testcase_02 | AC | 565 ms
54,684 KB |
testcase_03 | AC | 587 ms
56,536 KB |
testcase_04 | AC | 573 ms
55,308 KB |
testcase_05 | AC | 596 ms
57,556 KB |
testcase_06 | AC | 575 ms
56,028 KB |
testcase_07 | AC | 572 ms
54,768 KB |
testcase_08 | AC | 579 ms
56,984 KB |
testcase_09 | AC | 572 ms
55,680 KB |
testcase_10 | AC | 594 ms
59,228 KB |
testcase_11 | AC | 567 ms
56,212 KB |
testcase_12 | AC | 576 ms
56,864 KB |
testcase_13 | AC | 584 ms
57,048 KB |
testcase_14 | AC | 561 ms
54,036 KB |
testcase_15 | AC | 571 ms
54,484 KB |
testcase_16 | AC | 591 ms
57,956 KB |
testcase_17 | AC | 598 ms
58,704 KB |
testcase_18 | AC | 592 ms
57,900 KB |
testcase_19 | AC | 595 ms
58,508 KB |
testcase_20 | AC | 566 ms
54,244 KB |
testcase_21 | AC | 570 ms
54,904 KB |
testcase_22 | AC | 569 ms
54,552 KB |
testcase_23 | AC | 566 ms
54,244 KB |
testcase_24 | AC | 560 ms
54,264 KB |
testcase_25 | AC | 568 ms
54,004 KB |
testcase_26 | AC | 565 ms
53,976 KB |
testcase_27 | AC | 564 ms
54,112 KB |
testcase_28 | AC | 562 ms
54,080 KB |
testcase_29 | AC | 575 ms
56,272 KB |
testcase_30 | AC | 569 ms
54,648 KB |
testcase_31 | AC | 569 ms
54,168 KB |
testcase_32 | AC | 566 ms
54,312 KB |
testcase_33 | AC | 575 ms
54,732 KB |
コンパイルメッセージ
warning: variable "c" is unused (if the variable is not meant to be used, prefix it with an underscore) │ 14 │ defp calc(c, [], l) do │ ~ │ └─ Main.exs:14:13: Main.calc/3 warning: variable "l" is unused (if the variable is not meant to be used, prefix it with an underscore) │ 14 │ defp calc(c, [], l) do │ ~ │ └─ Main.exs:14:20: Main.calc/3
ソースコード
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, [], l) do 0 end defp calc(c, w, l) do [h | t] = w cond do c + h <= l -> calc(c + h, t, l) true -> Enum.count(t) + 1 end end end