結果

問題 No.795 Restrictions!!!!!!!!!!!!!!
ユーザー gemmarogemmaro
提出日時 2020-03-29 22:41:25
言語 Elixir
(1.16.2)
結果
AC  
実行時間 673 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 1,353 ms
コンパイル使用メモリ 62,960 KB
実行使用メモリ 60,160 KB
最終ジャッジ日時 2024-06-09 23:02:40
合計ジャッジ時間 14,888 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 639 ms
60,036 KB
testcase_01 AC 641 ms
59,712 KB
testcase_02 AC 649 ms
59,928 KB
testcase_03 AC 629 ms
59,752 KB
testcase_04 AC 644 ms
59,936 KB
testcase_05 AC 673 ms
59,880 KB
testcase_06 AC 639 ms
59,948 KB
testcase_07 AC 642 ms
59,724 KB
testcase_08 AC 637 ms
59,892 KB
testcase_09 AC 641 ms
59,916 KB
testcase_10 AC 638 ms
59,896 KB
testcase_11 AC 633 ms
59,568 KB
testcase_12 AC 653 ms
59,916 KB
testcase_13 AC 644 ms
60,160 KB
testcase_14 AC 632 ms
59,904 KB
testcase_15 AC 627 ms
59,832 KB
testcase_16 AC 638 ms
59,920 KB
testcase_17 AC 632 ms
59,816 KB
testcase_18 AC 650 ms
59,876 KB
testcase_19 AC 628 ms
59,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

require Integer

defmodule Main do
  def main do
    n =
      IO.gets("")
      |> String.trim()
      |> String.to_integer()

    m =
      IO.gets("")
      |> String.trim()
      |> String.to_integer()

    cond do
      Integer.is_odd(m) -> "No"
      Integer.is_even(n) || m >= 10 -> "Yes"
      true -> "No"
    end
    |> IO.puts()
  end
end
0