結果
問題 |
No.9010 うるう年判定
|
ユーザー |
![]() |
提出日時 | 2021-10-26 00:28:22 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 37 ms / 2,000 ms |
コード長 | 155 bytes |
コンパイル時間 | 416 ms |
コンパイル使用メモリ | 82,564 KB |
実行使用メモリ | 53,676 KB |
最終ジャッジ日時 | 2024-10-04 00:09:18 |
合計ジャッジ時間 | 2,087 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 25 |
ソースコード
line = int(input()) if line % 4 == 0: if line % 100 == 0 and line % 400 != 0: print("No") else: print("Yes") else: print("No")