結果
問題 | No.779 Heisei |
ユーザー |
![]() |
提出日時 | 2020-01-18 17:47:14 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 1,000 ms |
コード長 | 316 bytes |
コンパイル時間 | 85 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-27 22:12:23 |
合計ジャッジ時間 | 1,812 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 23 |
ソースコード
import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines from datetime import datetime y,m,d = map(int,read().split()) x = datetime(y,m,d) left = datetime(1989,1,8) right = datetime(2019,4,30) answer = 'Yes' if left <= x <= right else 'No' print(answer)