結果
問題 |
No.9010 うるう年判定
|
ユーザー |
|
提出日時 | 2025-02-05 14:46:02 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 137 bytes |
コンパイル時間 | 1,431 ms |
コンパイル使用メモリ | 82,096 KB |
実行使用メモリ | 53,764 KB |
最終ジャッジ日時 | 2025-02-05 14:46:07 |
合計ジャッジ時間 | 4,176 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 WA * 1 |
other | AC * 12 WA * 13 |
ソースコード
x = int(input()) leap = "Yes" common = "No" if x % 400 == 0: print(leap) elif x % 100 == 0: print(common) elif x % 4 == 0: print(leap)