結果
問題 | No.305 鍵(2) |
ユーザー | norioc |
提出日時 | 2024-08-11 04:43:00 |
言語 | Elixir (1.16.2) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,006 bytes |
コンパイル時間 | 2,416 ms |
コンパイル使用メモリ | 62,712 KB |
実行使用メモリ | 74,596 KB |
平均クエリ数 | 44.38 |
最終ジャッジ日時 | 2024-08-11 04:43:13 |
合計ジャッジ時間 | 12,230 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
defmodule Main do def input, do: IO.read(:line) |> String.trim def ii, do: input() |> String.to_integer def li, do: input() |> String.split |> Enum.map(&String.to_integer/1) def yn(b), do: IO.puts(if b, do: "Yes", else: "No") def main do m = for i <- 0..9, into: %{}, do: {i, 0} put(m) same = read() f(0, same, m) end def f(p, same, m) do m2 = Map.update!(m, p, fn v -> v+1 end) put(m2) same2 = read() cond do # 一致する数に変化がなかった。同じ桁を再変更 same2 == same -> f(p, same2, m2) # 一致する数が増えた。次の桁へ same2 > same -> f(p+1, same2, m2) # 一致する数が減った。以前の数が答え true -> m3 = Map.update!(m2, p, fn v -> v-1 end) f(p+1, same, m3) end end def read() do [x, _msg] = input() |> String.split String.to_integer(x) end def put(m) do Map.values(m) |> Enum.join() |> IO.puts end end