結果

問題 No.9010 うるう年判定
ユーザー shinwisteriashinwisteria
提出日時 2017-05-04 22:42:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 3,009 ms
コンパイル使用メモリ 74,896 KB
実行使用メモリ 54,120 KB
最終ジャッジ日時 2024-06-22 01:09:43
合計ジャッジ時間 6,756 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
53,748 KB
testcase_01 AC 91 ms
52,612 KB
testcase_02 AC 103 ms
53,940 KB
testcase_03 AC 105 ms
54,064 KB
testcase_04 AC 101 ms
52,740 KB
testcase_05 AC 97 ms
52,784 KB
testcase_06 AC 105 ms
54,024 KB
testcase_07 AC 102 ms
53,776 KB
testcase_08 AC 97 ms
53,060 KB
testcase_09 AC 101 ms
53,016 KB
testcase_10 AC 100 ms
52,904 KB
testcase_11 AC 102 ms
52,832 KB
testcase_12 AC 104 ms
54,000 KB
testcase_13 AC 98 ms
53,028 KB
testcase_14 AC 99 ms
52,852 KB
testcase_15 AC 101 ms
52,832 KB
testcase_16 AC 94 ms
53,020 KB
testcase_17 AC 102 ms
53,108 KB
testcase_18 AC 101 ms
53,948 KB
testcase_19 AC 109 ms
53,888 KB
testcase_20 AC 103 ms
53,912 KB
testcase_21 AC 99 ms
53,132 KB
testcase_22 AC 94 ms
52,824 KB
testcase_23 AC 94 ms
53,048 KB
testcase_24 AC 100 ms
54,120 KB
testcase_25 AC 95 ms
53,268 KB
testcase_26 AC 93 ms
53,072 KB
testcase_27 AC 99 ms
54,016 KB
testcase_28 AC 95 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Uruudoshi {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		s.close();
		if(N % 4 == 0 &&( N % 100 != 0 || N % 400 == 0)){
			System.out.println("Yes");
		}else{
			System.out.println("No");
		}

	}

}
0