結果

問題 No.9010 うるう年判定
ユーザー 🐧しゅんチャマ🌸🐧しゅんチャマ🌸
提出日時 2023-09-14 21:48:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 2,530 ms
コンパイル使用メモリ 74,044 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-07-02 04:34:35
合計ジャッジ時間 7,536 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,292 KB
testcase_01 AC 134 ms
41,196 KB
testcase_02 AC 121 ms
40,172 KB
testcase_03 AC 132 ms
41,056 KB
testcase_04 AC 134 ms
41,340 KB
testcase_05 AC 134 ms
41,052 KB
testcase_06 AC 134 ms
41,168 KB
testcase_07 AC 136 ms
41,292 KB
testcase_08 AC 119 ms
40,024 KB
testcase_09 AC 134 ms
41,252 KB
testcase_10 AC 134 ms
41,180 KB
testcase_11 AC 131 ms
41,064 KB
testcase_12 AC 134 ms
41,272 KB
testcase_13 AC 136 ms
40,896 KB
testcase_14 AC 137 ms
40,908 KB
testcase_15 AC 136 ms
41,164 KB
testcase_16 AC 135 ms
41,260 KB
testcase_17 AC 137 ms
41,208 KB
testcase_18 AC 135 ms
41,016 KB
testcase_19 AC 135 ms
41,404 KB
testcase_20 AC 134 ms
41,344 KB
testcase_21 AC 134 ms
41,416 KB
testcase_22 AC 122 ms
40,248 KB
testcase_23 AC 134 ms
41,044 KB
testcase_24 AC 132 ms
41,000 KB
testcase_25 AC 133 ms
39,896 KB
testcase_26 AC 133 ms
41,260 KB
testcase_27 AC 135 ms
41,516 KB
testcase_28 AC 133 ms
40,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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