結果

問題 No.966 引き算をして門松列(その1)
ユーザー noriocnorioc
提出日時 2024-08-14 03:11:40
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 1,013 bytes
コンパイル時間 2,233 ms
コンパイル使用メモリ 61,964 KB
実行使用メモリ 55,276 KB
最終ジャッジ日時 2024-08-14 03:11:53
合計ジャッジ時間 11,070 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 548 ms
53,880 KB
testcase_01 AC 545 ms
54,032 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
権限があれば一括ダウンロードができます

ソースコード

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
    t = ii()
    for _ <- 1..t do
      [a, b, c] = li()
      solve(a, b, c)
      |> IO.puts
    end
  end

  def solve(a, b, c) do
    m = Enum.max([a, b, c])
    cond do
      m == a -> f(a, c, b)
      m == b -> f(b, max(a, c), min(a, c))
      m == c -> f(c, a, b)
    end
  end

  def f(a, b, c) do
    cond do
      a <= b ->
        x = b - a + 1
        res = f(a, b-x, c)
        if res == -1 do
          -1
        else
          x + res
        end

      b <= c ->
        x = c - b + 1
        if c-x <= 0 do
          -1
        else
          x
        end
      true -> 0
    end
  end

  def is_kadomatu(a, b, c) do
    if a == b or b == c or c == a do
      false
    else
      [_, x, _] = Enum.sort([a, b, c])
      b != x
    end
  end
end
0