結果

問題 No.9010 うるう年判定
ユーザー aaaaaaaaaa
提出日時 2017-04-21 19:14:17
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 66 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 10,728 KB
実行使用メモリ 9,864 KB
最終ジャッジ日時 2023-09-04 00:59:07
合計ジャッジ時間 2,301 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
9,788 KB
testcase_01 AC 29 ms
9,752 KB
testcase_02 AC 28 ms
9,668 KB
testcase_03 AC 28 ms
9,644 KB
testcase_04 AC 27 ms
9,680 KB
testcase_05 AC 27 ms
9,852 KB
testcase_06 AC 28 ms
9,708 KB
testcase_07 AC 28 ms
9,864 KB
testcase_08 AC 30 ms
9,848 KB
testcase_09 AC 30 ms
9,792 KB
testcase_10 AC 29 ms
9,716 KB
testcase_11 AC 28 ms
9,856 KB
testcase_12 AC 28 ms
9,644 KB
testcase_13 AC 29 ms
9,676 KB
testcase_14 AC 27 ms
9,748 KB
testcase_15 AC 28 ms
9,688 KB
testcase_16 AC 27 ms
9,784 KB
testcase_17 AC 27 ms
9,796 KB
testcase_18 AC 27 ms
9,816 KB
testcase_19 AC 30 ms
9,828 KB
testcase_20 AC 29 ms
9,680 KB
testcase_21 AC 28 ms
9,684 KB
testcase_22 AC 27 ms
9,800 KB
testcase_23 AC 27 ms
9,788 KB
testcase_24 AC 27 ms
9,684 KB
testcase_25 AC 28 ms
9,700 KB
testcase_26 AC 27 ms
9,672 KB
testcase_27 AC 27 ms
9,740 KB
testcase_28 AC 27 ms
9,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import calendar;print(['No','Yes'][calendar.isleap(int(input()))])
0