結果

問題 No.1040 垂直大学
ユーザー gemmarogemmaro
提出日時 2020-05-02 06:44:52
言語 Elixir
(1.16.2)
結果
AC  
実行時間 559 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 1,050 ms
コンパイル使用メモリ 62,636 KB
実行使用メモリ 56,176 KB
最終ジャッジ日時 2024-06-09 23:56:54
合計ジャッジ時間 12,972 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 538 ms
54,372 KB
testcase_01 AC 527 ms
54,152 KB
testcase_02 AC 540 ms
53,484 KB
testcase_03 AC 538 ms
54,288 KB
testcase_04 AC 531 ms
54,276 KB
testcase_05 AC 532 ms
54,180 KB
testcase_06 AC 525 ms
53,872 KB
testcase_07 AC 529 ms
54,608 KB
testcase_08 AC 559 ms
53,968 KB
testcase_09 AC 538 ms
53,608 KB
testcase_10 AC 539 ms
53,980 KB
testcase_11 AC 524 ms
54,296 KB
testcase_12 AC 538 ms
54,900 KB
testcase_13 AC 523 ms
53,956 KB
testcase_14 AC 526 ms
53,904 KB
testcase_15 AC 531 ms
56,176 KB
testcase_16 AC 542 ms
55,132 KB
testcase_17 AC 555 ms
53,728 KB
testcase_18 AC 527 ms
53,780 KB
testcase_19 AC 539 ms
53,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

  def solve({n, _}) do
    m = n |> rem(360)

    cond do
      m == 90 || m == 90 * 3 -> "Yes"
      :else -> "No"
    end
  end
end
0