結果
問題 |
No.779 Heisei
|
ユーザー |
![]() |
提出日時 | 2019-03-30 12:04:09 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 321 bytes |
コンパイル時間 | 108 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-11-08 16:39:23 |
合計ジャッジ時間 | 1,593 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 13 WA * 10 |
ソースコード
import datetime def main(): d = input() s = d.split(" ") asc_date = datetime.date(int(s[0]), int(s[1]), int(s[2])) heisei_start = datetime.date(1989, 1, 8) heisei_end = datetime.date(2019, 4, 30) if heisei_start <= asc_date <= heisei_end: print("Yes") print("No") main()