結果

問題 No.9010 うるう年判定
ユーザー yumechiyumechi
提出日時 2017-06-16 00:50:23
言語 Elixir
(1.16.2)
結果
AC  
実行時間 648 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 1,074 ms
コンパイル使用メモリ 62,440 KB
実行使用メモリ 55,600 KB
最終ジャッジ日時 2024-06-09 21:59:16
合計ジャッジ時間 20,946 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 615 ms
53,620 KB
testcase_01 AC 612 ms
53,804 KB
testcase_02 AC 620 ms
54,676 KB
testcase_03 AC 618 ms
53,860 KB
testcase_04 AC 625 ms
53,756 KB
testcase_05 AC 618 ms
53,732 KB
testcase_06 AC 619 ms
53,672 KB
testcase_07 AC 617 ms
53,656 KB
testcase_08 AC 616 ms
54,008 KB
testcase_09 AC 617 ms
55,304 KB
testcase_10 AC 621 ms
53,672 KB
testcase_11 AC 620 ms
54,316 KB
testcase_12 AC 627 ms
54,136 KB
testcase_13 AC 612 ms
53,992 KB
testcase_14 AC 624 ms
53,864 KB
testcase_15 AC 615 ms
53,752 KB
testcase_16 AC 625 ms
53,740 KB
testcase_17 AC 608 ms
53,880 KB
testcase_18 AC 623 ms
53,992 KB
testcase_19 AC 615 ms
53,488 KB
testcase_20 AC 618 ms
54,452 KB
testcase_21 AC 620 ms
54,096 KB
testcase_22 AC 623 ms
53,624 KB
testcase_23 AC 606 ms
53,948 KB
testcase_24 AC 612 ms
53,948 KB
testcase_25 AC 613 ms
55,600 KB
testcase_26 AC 608 ms
53,992 KB
testcase_27 AC 648 ms
54,016 KB
testcase_28 AC 616 ms
54,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

0