結果

問題 No.85 TVザッピング(1)
ユーザー gemmarogemmaro
提出日時 2020-05-15 08:26:02
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 407 bytes
コンパイル時間 1,015 ms
コンパイル使用メモリ 63,140 KB
実行使用メモリ 54,664 KB
最終ジャッジ日時 2024-06-10 00:01:17
合計ジャッジ時間 18,983 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 548 ms
54,132 KB
testcase_01 AC 533 ms
53,672 KB
testcase_02 AC 545 ms
53,944 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 541 ms
53,896 KB
testcase_10 AC 522 ms
54,496 KB
testcase_11 AC 529 ms
54,052 KB
testcase_12 AC 525 ms
53,868 KB
testcase_13 AC 530 ms
53,812 KB
testcase_14 AC 531 ms
54,400 KB
testcase_15 AC 534 ms
53,684 KB
testcase_16 AC 531 ms
53,808 KB
testcase_17 AC 530 ms
53,692 KB
testcase_18 AC 568 ms
54,432 KB
testcase_19 AC 568 ms
54,200 KB
testcase_20 AC 590 ms
54,028 KB
testcase_21 AC 554 ms
54,264 KB
testcase_22 AC 531 ms
54,056 KB
testcase_23 AC 545 ms
53,864 KB
testcase_24 AC 531 ms
54,528 KB
testcase_25 AC 526 ms
53,496 KB
testcase_26 AC 759 ms
53,796 KB
testcase_27 AC 526 ms
54,008 KB
testcase_28 AC 530 ms
54,236 KB
testcase_29 AC 545 ms
54,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.read(:line)
    |> String.trim()
    |> String.split()
    |> Enum.map(&String.to_integer/1)
    |> solve
    |> IO.puts()
  end

  def solve([n, m, _c]) do
    case [n, m] |> Enum.sort() do
      [1, 2] ->
        "YES"

      [1, _] ->
        "NO"

      _ ->
        cond do
          n |> rem(2) == 0 -> "YES"
          :else -> "NO"
        end
    end
  end
end
0