結果
| 問題 | No.779 Heisei |
| コンテスト | |
| ユーザー |
kekenx
|
| 提出日時 | 2020-06-13 20:27:47 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
AC
|
| 実行時間 | 97 ms / 1,000 ms |
| コード長 | 349 bytes |
| 記録 | |
| コンパイル時間 | 561 ms |
| コンパイル使用メモリ | 20,808 KB |
| 実行使用メモリ | 15,484 KB |
| 最終ジャッジ日時 | 2026-03-12 06:04:27 |
| 合計ジャッジ時間 | 3,763 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
import datetime
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
y, m, d = list(map(int, input().split()))
start = datetime.datetime(1989, 1, 8)
end = datetime.datetime(2019, 4, 30)
cur = datetime.datetime(y, m, d)
if start <= cur <= end:
print("Yes")
else:
print("No")
kekenx