結果

問題 No.9010 うるう年判定
ユーザー silverskyvictosilverskyvicto
提出日時 2018-06-10 22:15:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 3,618 ms
コンパイル使用メモリ 74,724 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-06-22 01:14:20
合計ジャッジ時間 8,171 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,184 KB
testcase_01 AC 129 ms
54,164 KB
testcase_02 AC 129 ms
53,888 KB
testcase_03 AC 133 ms
54,184 KB
testcase_04 AC 131 ms
54,012 KB
testcase_05 AC 130 ms
53,900 KB
testcase_06 AC 130 ms
54,280 KB
testcase_07 AC 130 ms
54,116 KB
testcase_08 AC 130 ms
53,924 KB
testcase_09 AC 131 ms
54,240 KB
testcase_10 AC 130 ms
54,124 KB
testcase_11 AC 133 ms
53,972 KB
testcase_12 AC 136 ms
54,060 KB
testcase_13 AC 129 ms
53,916 KB
testcase_14 AC 132 ms
54,288 KB
testcase_15 AC 130 ms
54,252 KB
testcase_16 AC 134 ms
54,036 KB
testcase_17 AC 131 ms
54,192 KB
testcase_18 AC 133 ms
53,996 KB
testcase_19 AC 130 ms
54,116 KB
testcase_20 AC 133 ms
54,220 KB
testcase_21 AC 129 ms
54,028 KB
testcase_22 AC 130 ms
54,144 KB
testcase_23 AC 131 ms
54,244 KB
testcase_24 AC 131 ms
54,304 KB
testcase_25 AC 130 ms
54,280 KB
testcase_26 AC 129 ms
54,024 KB
testcase_27 AC 130 ms
54,408 KB
testcase_28 AC 128 ms
54,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
    public static void main (String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int year = sc.nextInt();
        
        if (year % 4 == 0) {
            if (year % 100 == 0) {
                if (year % 400 == 0) {
                    System.out.println("Yes");
                } else {
                    System.out.println("No");
                }
            } else {
                System.out.println("Yes");
            }
            
        } else {
            System.out.println("No");
        }
    }
}
0