結果
問題 |
No.779 Heisei
|
ユーザー |
![]() |
提出日時 | 2019-03-19 00:08:45 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 256 bytes |
コンパイル時間 | 79 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-19 08:50:52 |
合計ジャッジ時間 | 1,424 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 WA * 2 |
ソースコード
import datetime Y,M,D = map(int,input().split()) startday = datetime.datetime(1989,1,8) lastday = datetime.datetime(2019,4,30) theday = datetime.datetime(Y,M,D) if (startday < theday) and (theday < lastday): ans = "Yes" else: ans = "No" print(ans)