結果

問題 No.9010 うるう年判定
ユーザー juugayajuugaya
提出日時 2020-06-12 21:24:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 1,721 ms
コンパイル使用メモリ 74,548 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-06-22 01:25:35
合計ジャッジ時間 5,512 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
52,992 KB
testcase_01 AC 101 ms
54,056 KB
testcase_02 AC 108 ms
54,008 KB
testcase_03 AC 102 ms
53,856 KB
testcase_04 AC 96 ms
52,620 KB
testcase_05 AC 109 ms
53,896 KB
testcase_06 AC 106 ms
53,872 KB
testcase_07 AC 111 ms
54,092 KB
testcase_08 AC 101 ms
53,892 KB
testcase_09 AC 98 ms
52,964 KB
testcase_10 AC 104 ms
53,916 KB
testcase_11 AC 103 ms
53,784 KB
testcase_12 AC 101 ms
53,932 KB
testcase_13 AC 103 ms
53,920 KB
testcase_14 AC 97 ms
54,252 KB
testcase_15 AC 100 ms
54,000 KB
testcase_16 AC 97 ms
54,060 KB
testcase_17 AC 92 ms
52,652 KB
testcase_18 AC 100 ms
53,780 KB
testcase_19 AC 102 ms
53,864 KB
testcase_20 AC 97 ms
52,984 KB
testcase_21 AC 97 ms
52,984 KB
testcase_22 AC 96 ms
52,784 KB
testcase_23 AC 101 ms
54,052 KB
testcase_24 AC 102 ms
54,000 KB
testcase_25 AC 89 ms
52,964 KB
testcase_26 AC 99 ms
53,132 KB
testcase_27 AC 94 ms
52,900 KB
testcase_28 AC 108 ms
54,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Sample {

public static void main(String args[]) {

Scanner scanner = new Scanner(System.in);

String input = scanner.nextLine();

   int n =Integer.parseInt(input);
if(n%400==0){System.out.println("Yes");}
else if(n%100==0){System.out.println("No");}
else if(n%4==0){System.out.println("Yes");}
else{System.out.println("No");}



}

}
0