結果

問題 No.1040 垂直大学
ユーザー penqenpenqen
提出日時 2020-12-16 14:50:06
言語 Elixir
(1.16.2)
結果
AC  
実行時間 579 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 1,018 ms
コンパイル使用メモリ 63,072 KB
実行使用メモリ 55,676 KB
最終ジャッジ日時 2024-06-10 00:23:40
合計ジャッジ時間 13,559 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 557 ms
55,676 KB
testcase_01 AC 548 ms
54,216 KB
testcase_02 AC 546 ms
55,140 KB
testcase_03 AC 567 ms
54,336 KB
testcase_04 AC 538 ms
54,832 KB
testcase_05 AC 546 ms
53,736 KB
testcase_06 AC 542 ms
53,872 KB
testcase_07 AC 564 ms
55,540 KB
testcase_08 AC 561 ms
54,132 KB
testcase_09 AC 536 ms
54,280 KB
testcase_10 AC 536 ms
53,860 KB
testcase_11 AC 540 ms
54,624 KB
testcase_12 AC 571 ms
53,736 KB
testcase_13 AC 573 ms
53,860 KB
testcase_14 AC 579 ms
53,744 KB
testcase_15 AC 555 ms
55,588 KB
testcase_16 AC 531 ms
54,196 KB
testcase_17 AC 569 ms
54,320 KB
testcase_18 AC 541 ms
53,872 KB
testcase_19 AC 554 ms
54,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.read(:line)
    |> String.trim()
    |> String.to_integer()
    |> solve()
    |> IO.puts()
  end

  def solve(n) when 1 <= n and n <= 1_000 do
    if rem(n, 180) == 90 do
      "Yes"
    else
      "No"
    end
  end
end
0