結果

問題 No.632 穴埋め門松列
ユーザー noriocnorioc
提出日時 2024-08-14 21:35:34
言語 Elixir
(1.16.2)
結果
AC  
実行時間 629 ms / 1,000 ms
コード長 665 bytes
コンパイル時間 2,790 ms
コンパイル使用メモリ 62,144 KB
実行使用メモリ 53,932 KB
最終ジャッジ日時 2024-08-14 21:35:42
合計ジャッジ時間 7,301 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 611 ms
53,820 KB
testcase_01 AC 629 ms
53,808 KB
testcase_02 AC 620 ms
53,804 KB
testcase_03 AC 623 ms
53,672 KB
testcase_04 AC 626 ms
53,932 KB
testcase_05 AC 620 ms
53,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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
    s = input()

    for x <- ["1", "4"] do
      t = String.replace(s, "?", x)
      [a, b, c] = t |> String.split |> Enum.map(&String.to_integer/1)
      if is_kadomatu(a, b, c), do: x, else: ""
    end
    |> Enum.join
    |> IO.puts
  end

  def is_kadomatu(a, b, c) do
    cond do
      a == b or b == c or c == a -> false
      true ->
        [_, x, _] = Enum.sort([a, b, c])
        b != x
    end
  end
end
0