結果

問題 No.9010 うるう年判定
ユーザー koena_1koena_1
提出日時 2018-05-01 10:53:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 2,629 ms
コンパイル使用メモリ 74,284 KB
実行使用メモリ 50,392 KB
最終ジャッジ日時 2024-06-22 01:13:56
合計ジャッジ時間 3,839 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
50,212 KB
testcase_01 AC 46 ms
50,032 KB
testcase_02 AC 48 ms
50,236 KB
testcase_03 AC 46 ms
50,252 KB
testcase_04 AC 46 ms
50,308 KB
testcase_05 AC 48 ms
50,196 KB
testcase_06 AC 47 ms
50,236 KB
testcase_07 AC 50 ms
50,272 KB
testcase_08 AC 48 ms
50,260 KB
testcase_09 AC 48 ms
50,328 KB
testcase_10 AC 48 ms
50,392 KB
testcase_11 AC 46 ms
50,224 KB
testcase_12 AC 49 ms
50,192 KB
testcase_13 AC 46 ms
50,308 KB
testcase_14 AC 46 ms
50,296 KB
testcase_15 AC 47 ms
50,324 KB
testcase_16 AC 46 ms
49,904 KB
testcase_17 AC 46 ms
50,120 KB
testcase_18 AC 46 ms
50,196 KB
testcase_19 AC 46 ms
50,292 KB
testcase_20 AC 45 ms
50,012 KB
testcase_21 AC 45 ms
49,948 KB
testcase_22 AC 46 ms
50,264 KB
testcase_23 AC 45 ms
49,884 KB
testcase_24 AC 48 ms
50,340 KB
testcase_25 AC 46 ms
50,004 KB
testcase_26 AC 45 ms
50,240 KB
testcase_27 AC 48 ms
50,024 KB
testcase_28 AC 47 ms
50,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

class uruu{
 public static void main(String[] args) throws IOException
{
BufferedReader br=
new BufferedReader(new InputStreamReader(System.in));
String str=br.readLine();
int num=Integer.parseInt(str);

if(num%4==0&&num%100 !=0){
 System.out.println("Yes");
}
else if(num%400==0){
 System.out.println("Yes");
}
else{
 System.out.println("No");
}
}

}
0