結果

問題 No.9010 うるう年判定
ユーザー pypypymipypypymi
提出日時 2022-02-20 17:31:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 162 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 53,568 KB
最終ジャッジ日時 2024-06-29 10:52:33
合計ジャッジ時間 2,043 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,908 KB
testcase_01 AC 38 ms
53,568 KB
testcase_02 AC 32 ms
51,756 KB
testcase_03 AC 34 ms
53,192 KB
testcase_04 AC 32 ms
52,372 KB
testcase_05 AC 31 ms
51,776 KB
testcase_06 AC 31 ms
52,156 KB
testcase_07 AC 30 ms
52,884 KB
testcase_08 AC 30 ms
52,440 KB
testcase_09 AC 30 ms
51,624 KB
testcase_10 AC 30 ms
53,156 KB
testcase_11 AC 31 ms
52,676 KB
testcase_12 AC 31 ms
52,172 KB
testcase_13 AC 30 ms
51,420 KB
testcase_14 AC 33 ms
52,700 KB
testcase_15 AC 30 ms
52,212 KB
testcase_16 AC 30 ms
53,356 KB
testcase_17 AC 30 ms
52,904 KB
testcase_18 AC 30 ms
53,088 KB
testcase_19 AC 31 ms
52,024 KB
testcase_20 AC 31 ms
51,940 KB
testcase_21 AC 33 ms
52,076 KB
testcase_22 AC 34 ms
53,184 KB
testcase_23 AC 34 ms
52,564 KB
testcase_24 AC 33 ms
52,136 KB
testcase_25 AC 32 ms
52,364 KB
testcase_26 AC 32 ms
52,012 KB
testcase_27 AC 32 ms
53,300 KB
testcase_28 AC 31 ms
52,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n%4==0:
    if n%400==0:
        print("Yes")
    elif n%100==0:
        print("No")
    else:
        print("Yes")
else:
    print("No")
    
0