結果

問題 No.9010 うるう年判定
ユーザー yagi2yagi2
提出日時 2017-04-21 17:03:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 742 bytes
コンパイル時間 2,082 ms
コンパイル使用メモリ 74,948 KB
実行使用メモリ 54,448 KB
最終ジャッジ日時 2024-06-22 01:07:24
合計ジャッジ時間 5,815 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
53,860 KB
testcase_01 AC 110 ms
53,856 KB
testcase_02 AC 112 ms
54,084 KB
testcase_03 AC 109 ms
54,064 KB
testcase_04 AC 108 ms
54,264 KB
testcase_05 AC 107 ms
54,020 KB
testcase_06 AC 105 ms
54,140 KB
testcase_07 AC 104 ms
54,016 KB
testcase_08 AC 109 ms
53,888 KB
testcase_09 AC 107 ms
53,944 KB
testcase_10 AC 109 ms
54,216 KB
testcase_11 AC 110 ms
53,988 KB
testcase_12 AC 108 ms
54,448 KB
testcase_13 AC 103 ms
53,960 KB
testcase_14 AC 104 ms
54,088 KB
testcase_15 AC 95 ms
52,892 KB
testcase_16 AC 92 ms
52,364 KB
testcase_17 AC 96 ms
54,252 KB
testcase_18 AC 108 ms
54,244 KB
testcase_19 AC 95 ms
52,944 KB
testcase_20 AC 110 ms
54,044 KB
testcase_21 AC 108 ms
54,044 KB
testcase_22 AC 95 ms
52,892 KB
testcase_23 AC 91 ms
52,392 KB
testcase_24 AC 104 ms
53,932 KB
testcase_25 AC 109 ms
54,092 KB
testcase_26 AC 109 ms
54,092 KB
testcase_27 AC 116 ms
53,972 KB
testcase_28 AC 110 ms
54,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

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

        if (N.mod(new BigInteger("4")).compareTo(BigInteger.ZERO) == 0) {
            if (N.mod(new BigInteger("100")).compareTo(BigInteger.ZERO) == 0) {
                if (N.mod(new BigInteger("400")).compareTo(BigInteger.ZERO) == 0) {
                    System.out.println("Yes");
                } else {
                    System.out.println("No");
                }
            } else {
                System.out.println("Yes");
            }
        } else {
            System.out.println("No");
        }
    }
}
0