結果

問題 No.9010 うるう年判定
ユーザー きつねうどんきつねうどん
提出日時 2024-03-13 18:46:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 1,843 ms
コンパイル使用メモリ 83,704 KB
実行使用メモリ 41,776 KB
最終ジャッジ日時 2024-09-29 22:54:15
合計ジャッジ時間 6,117 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,224 KB
testcase_01 AC 101 ms
41,680 KB
testcase_02 AC 108 ms
41,216 KB
testcase_03 AC 103 ms
41,776 KB
testcase_04 AC 119 ms
41,516 KB
testcase_05 AC 114 ms
41,060 KB
testcase_06 AC 103 ms
41,280 KB
testcase_07 AC 114 ms
40,348 KB
testcase_08 AC 115 ms
41,240 KB
testcase_09 AC 99 ms
41,080 KB
testcase_10 AC 117 ms
41,216 KB
testcase_11 AC 116 ms
41,388 KB
testcase_12 AC 109 ms
41,140 KB
testcase_13 AC 104 ms
41,168 KB
testcase_14 AC 120 ms
41,296 KB
testcase_15 AC 120 ms
41,100 KB
testcase_16 AC 102 ms
41,116 KB
testcase_17 AC 113 ms
41,352 KB
testcase_18 AC 112 ms
41,212 KB
testcase_19 AC 102 ms
41,504 KB
testcase_20 AC 114 ms
41,368 KB
testcase_21 AC 121 ms
41,392 KB
testcase_22 AC 100 ms
41,268 KB
testcase_23 AC 100 ms
41,236 KB
testcase_24 AC 100 ms
41,392 KB
testcase_25 AC 103 ms
41,076 KB
testcase_26 AC 112 ms
41,208 KB
testcase_27 AC 114 ms
41,496 KB
testcase_28 AC 98 ms
41,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int N = sc.nextInt();
        if (N % 100 == 0 && N % 400 != 0) {
            System.out.println("No");
        } else if (N % 4 == 0) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
}

0