結果

問題 No.9010 うるう年判定
ユーザー yumechiyumechi
提出日時 2017-06-16 00:42:06
言語 Elixir
(1.16.2)
結果
AC  
実行時間 628 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 989 ms
コンパイル使用メモリ 63,776 KB
実行使用メモリ 54,312 KB
最終ジャッジ日時 2024-06-09 21:59:41
合計ジャッジ時間 20,795 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 625 ms
53,676 KB
testcase_01 AC 624 ms
54,000 KB
testcase_02 AC 628 ms
53,620 KB
testcase_03 AC 620 ms
53,800 KB
testcase_04 AC 620 ms
53,336 KB
testcase_05 AC 620 ms
53,336 KB
testcase_06 AC 624 ms
53,416 KB
testcase_07 AC 612 ms
53,412 KB
testcase_08 AC 616 ms
53,756 KB
testcase_09 AC 616 ms
53,424 KB
testcase_10 AC 617 ms
54,156 KB
testcase_11 AC 620 ms
53,416 KB
testcase_12 AC 621 ms
53,688 KB
testcase_13 AC 628 ms
53,544 KB
testcase_14 AC 625 ms
53,552 KB
testcase_15 AC 623 ms
53,772 KB
testcase_16 AC 621 ms
53,912 KB
testcase_17 AC 619 ms
53,912 KB
testcase_18 AC 625 ms
53,424 KB
testcase_19 AC 614 ms
53,764 KB
testcase_20 AC 614 ms
53,552 KB
testcase_21 AC 616 ms
53,556 KB
testcase_22 AC 621 ms
53,800 KB
testcase_23 AC 615 ms
53,588 KB
testcase_24 AC 618 ms
53,796 KB
testcase_25 AC 609 ms
54,312 KB
testcase_26 AC 624 ms
53,296 KB
testcase_27 AC 616 ms
53,592 KB
testcase_28 AC 618 ms
53,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def solve do
    x = IO.gets("") |> Integer.parse |> elem(0)
    cond do
      rem(x, 400) === 0 ->
        "Yes"
      rem(x, 100) !== 0 && rem(x, 4) === 0 ->
        "Yes"
      true ->
        "No"
    end
  end
  def main do
      IO.puts(solve())
  end
end

0