結果

問題 No.3041 なんとかのはなうらない
ユーザー gemmarogemmaro
提出日時 2020-04-29 19:18:57
言語 Elixir
(1.16.2)
結果
AC  
実行時間 606 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 1,088 ms
コンパイル使用メモリ 62,608 KB
実行使用メモリ 55,280 KB
最終ジャッジ日時 2024-06-09 23:56:33
合計ジャッジ時間 11,270 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 588 ms
53,804 KB
testcase_01 AC 586 ms
53,740 KB
testcase_02 AC 594 ms
53,544 KB
testcase_03 AC 588 ms
54,096 KB
testcase_04 AC 594 ms
54,212 KB
testcase_05 AC 601 ms
54,100 KB
testcase_06 AC 587 ms
53,616 KB
testcase_07 AC 606 ms
55,280 KB
testcase_08 AC 590 ms
54,208 KB
testcase_09 AC 583 ms
53,864 KB
testcase_10 AC 590 ms
55,172 KB
testcase_11 AC 586 ms
53,892 KB
testcase_12 AC 593 ms
53,696 KB
testcase_13 AC 597 ms
53,484 KB
testcase_14 AC 595 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.read(:line)
    |> Integer.parse()
    |> solve
    |> IO.puts()
  end

  def solve({n, _}) do
    cond do
      n <= 4 || n |> rem(2) -> "Yes"
      true -> "No"
    end
  end
end
0