結果

問題 No.9010 うるう年判定
ユーザー ウップス600ウップス600
提出日時 2022-01-04 20:56:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 2,014 ms
コンパイル使用メモリ 73,520 KB
実行使用メモリ 41,284 KB
最終ジャッジ日時 2024-10-14 17:02:50
合計ジャッジ時間 6,303 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
39,676 KB
testcase_01 AC 115 ms
40,996 KB
testcase_02 AC 114 ms
40,828 KB
testcase_03 AC 101 ms
39,676 KB
testcase_04 AC 118 ms
40,996 KB
testcase_05 AC 119 ms
40,736 KB
testcase_06 AC 109 ms
40,468 KB
testcase_07 AC 121 ms
41,156 KB
testcase_08 AC 104 ms
39,864 KB
testcase_09 AC 118 ms
41,284 KB
testcase_10 AC 119 ms
40,944 KB
testcase_11 AC 114 ms
41,020 KB
testcase_12 AC 118 ms
41,044 KB
testcase_13 AC 107 ms
39,548 KB
testcase_14 AC 117 ms
40,884 KB
testcase_15 AC 108 ms
39,748 KB
testcase_16 AC 107 ms
39,984 KB
testcase_17 AC 117 ms
41,020 KB
testcase_18 AC 105 ms
39,756 KB
testcase_19 AC 103 ms
39,808 KB
testcase_20 AC 106 ms
39,792 KB
testcase_21 AC 117 ms
41,032 KB
testcase_22 AC 119 ms
41,256 KB
testcase_23 AC 108 ms
39,804 KB
testcase_24 AC 122 ms
40,932 KB
testcase_25 AC 109 ms
39,400 KB
testcase_26 AC 115 ms
40,928 KB
testcase_27 AC 108 ms
39,420 KB
testcase_28 AC 114 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java. util. Scanner;

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