結果

問題 No.1366 交換門松列・梅
ユーザー noriocnorioc
提出日時 2024-08-18 14:50:04
言語 Elixir
(1.16.2)
結果
AC  
実行時間 539 ms / 1,000 ms
コード長 683 bytes
コンパイル時間 4,276 ms
コンパイル使用メモリ 62,092 KB
実行使用メモリ 55,348 KB
最終ジャッジ日時 2024-12-16 13:22:51
合計ジャッジ時間 12,866 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
54,724 KB
testcase_01 AC 522 ms
54,164 KB
testcase_02 AC 533 ms
54,244 KB
testcase_03 AC 539 ms
55,348 KB
testcase_04 AC 529 ms
54,248 KB
testcase_05 AC 523 ms
54,028 KB
testcase_06 AC 526 ms
54,792 KB
testcase_07 AC 520 ms
54,112 KB
testcase_08 AC 526 ms
54,408 KB
testcase_09 AC 538 ms
54,028 KB
testcase_10 AC 522 ms
55,176 KB
testcase_11 AC 522 ms
54,164 KB
testcase_12 AC 537 ms
54,148 KB
testcase_13 AC 531 ms
54,380 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
    a = li()
    b = li()

    for i <- 0..2, j <- 0..2 do
      [a1, b1, c1] = List.replace_at(a, i, Enum.at(b, j))
      [a2, b2, c2] = List.replace_at(b, j, Enum.at(a, i))

      is_kadomatu(a1, b1, c1) and is_kadomatu(a2, b2, c2)
    end
    |> Enum.any?
    |> yn
  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