結果
問題 | No.10 +か×か |
ユーザー | penqen |
提出日時 | 2021-04-05 03:45:31 |
言語 | Elixir (1.16.2) |
結果 |
AC
|
実行時間 | 3,502 ms / 5,000 ms |
コード長 | 980 bytes |
コンパイル時間 | 1,169 ms |
コンパイル使用メモリ | 63,188 KB |
実行使用メモリ | 151,352 KB |
最終ジャッジ日時 | 2024-05-08 12:05:02 |
合計ジャッジ時間 | 16,451 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 649 ms
53,932 KB |
testcase_01 | AC | 640 ms
53,676 KB |
testcase_02 | AC | 647 ms
53,940 KB |
testcase_03 | AC | 3,502 ms
150,880 KB |
testcase_04 | AC | 660 ms
55,976 KB |
testcase_05 | AC | 646 ms
53,552 KB |
testcase_06 | AC | 3,239 ms
151,352 KB |
testcase_07 | AC | 1,387 ms
118,664 KB |
testcase_08 | AC | 741 ms
70,152 KB |
testcase_09 | AC | 705 ms
62,360 KB |
testcase_10 | AC | 636 ms
53,496 KB |
testcase_11 | AC | 637 ms
53,936 KB |
コンパイルメッセージ
warning: missing parentheses for expression following "do:" keyword. Parentheses are required to solve ambiguity inside keywords. This error happens when you have function calls without parentheses inside keywords. For example: function(arg, one: nested_call a, b, c) function(arg, one: if expr, do: :this, else: :that) In the examples above, we don't know if the arguments "b" and "c" apply to the function "function" or "nested_call". Or if the keywords "do" and "else" apply to the function "function" or "if". You can solve this by explicitly adding parentheses: function(arg, one: if(expr, do: :this, else: :that)) function(arg, one: nested_call(a, b, c)) Ambiguity found at: │ 27 │ do: if is_nil(dp[key]) || dp[key] < value, do: Map.put(dp, key, value), else: dp │ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ │ └─ Main.exs:27 warning: use Bitwise is deprecated. import Bitwise instead │ 2 │ use Bitwise │ ~~~~~~~~~~~ │ └─ Main.exs:2: Main (module)
ソースコード
defmodule Main do use Bitwise def main do n = IO.read(:line) |> String.trim() |> String.to_integer() total = IO.read(:line) |> String.trim() |> String.to_integer() an = IO.read(:line) |> String.trim() |> String.split(" ") |> Enum.map(&String.to_integer/1) solve(n, total, an) |> IO.puts() end def solve(n, total, an) do [a | an] = an an |> Enum.reduce(Map.put(%{}, a, 0), fn a, dp -> Enum.reduce(dp, %{}, fn {acc, wi}, ndp -> ndp |> put(acc + a, (wi <<< 1) + 1, total) |> put(acc * a, (wi <<< 1), total) end) end) |> (fn dp -> dp[total] |> restore(n) |> Enum.reverse() |> Enum.join("") end).() end def restore(_w, 1), do: [] def restore(w, i), do: [(if (w &&& 1) == 1, do: :+, else: :*) | restore(w >>> 1 ,i - 1)] def put(dp, key, value, total) when key <= total, do: if is_nil(dp[key]) || dp[key] < value, do: Map.put(dp, key, value), else: dp def put(dp, _key, _value, _total), do: dp end