結果

問題 No.26 シャッフルゲーム
ユーザー gemmarogemmaro
提出日時 2020-04-13 23:16:12
言語 Elixir
(1.16.2)
結果
AC  
実行時間 585 ms / 5,000 ms
コード長 647 bytes
コンパイル時間 1,111 ms
コンパイル使用メモリ 63,380 KB
実行使用メモリ 55,188 KB
最終ジャッジ日時 2024-06-09 23:21:06
合計ジャッジ時間 7,564 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 535 ms
54,704 KB
testcase_01 AC 552 ms
54,620 KB
testcase_02 AC 569 ms
54,708 KB
testcase_03 AC 555 ms
54,672 KB
testcase_04 AC 559 ms
54,628 KB
testcase_05 AC 554 ms
54,840 KB
testcase_06 AC 569 ms
55,180 KB
testcase_07 AC 551 ms
55,188 KB
testcase_08 AC 585 ms
54,892 KB
testcase_09 AC 584 ms
54,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    n =
      IO.read(:line)
      |> String.trim()
      |> String.to_integer()

    IO.read(:line)
    |> String.trim()
    |> String.to_integer()
    |> (&(1..&1)).()
    |> Enum.map(fn _ ->
      IO.read(:line)
      |> String.split()
      |> Enum.map(&String.to_integer/1)
    end)
    |> solve(n)
    |> IO.puts()
  end

  defp solve(pq, n) do
    cond do
      Enum.empty?(pq) ->
        n

      true ->
        [p, q] = hd(pq)

        Enum.slice(pq, 1..-1)
        |> solve(
          cond do
            p == n -> q
            q == n -> p
            true -> n
          end
        )
    end
  end
end
0