結果

問題 No.9010 うるう年判定
ユーザー Mcpu3Mcpu3
提出日時 2018-04-15 23:44:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 1,898 ms
コンパイル使用メモリ 74,024 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-06-22 01:13:49
合計ジャッジ時間 5,897 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
54,104 KB
testcase_01 AC 100 ms
52,820 KB
testcase_02 AC 101 ms
53,064 KB
testcase_03 AC 112 ms
53,964 KB
testcase_04 AC 114 ms
54,104 KB
testcase_05 AC 113 ms
54,216 KB
testcase_06 AC 112 ms
54,260 KB
testcase_07 AC 113 ms
53,852 KB
testcase_08 AC 103 ms
52,748 KB
testcase_09 AC 113 ms
54,104 KB
testcase_10 AC 111 ms
53,880 KB
testcase_11 AC 113 ms
54,028 KB
testcase_12 AC 106 ms
53,544 KB
testcase_13 AC 113 ms
54,048 KB
testcase_14 AC 113 ms
54,004 KB
testcase_15 AC 115 ms
54,136 KB
testcase_16 AC 116 ms
54,144 KB
testcase_17 AC 100 ms
53,016 KB
testcase_18 AC 113 ms
53,828 KB
testcase_19 AC 108 ms
53,456 KB
testcase_20 AC 112 ms
53,920 KB
testcase_21 AC 104 ms
52,728 KB
testcase_22 AC 102 ms
52,860 KB
testcase_23 AC 103 ms
52,704 KB
testcase_24 AC 114 ms
54,152 KB
testcase_25 AC 99 ms
53,108 KB
testcase_26 AC 101 ms
52,908 KB
testcase_27 AC 109 ms
52,764 KB
testcase_28 AC 109 ms
53,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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