結果

問題 No.779 Heisei
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-15 10:39:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 1,000 ms
コード長 205 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,860 KB
実行使用メモリ 55,336 KB
最終ジャッジ日時 2024-06-28 10:02:58
合計ジャッジ時間 2,053 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,872 KB
testcase_01 AC 43 ms
53,324 KB
testcase_02 AC 42 ms
53,544 KB
testcase_03 AC 42 ms
53,812 KB
testcase_04 AC 42 ms
53,316 KB
testcase_05 AC 42 ms
53,780 KB
testcase_06 AC 43 ms
53,548 KB
testcase_07 AC 42 ms
54,344 KB
testcase_08 AC 43 ms
54,940 KB
testcase_09 AC 42 ms
53,360 KB
testcase_10 AC 43 ms
53,784 KB
testcase_11 AC 43 ms
55,336 KB
testcase_12 AC 43 ms
54,312 KB
testcase_13 AC 42 ms
53,540 KB
testcase_14 AC 43 ms
54,616 KB
testcase_15 AC 41 ms
54,172 KB
testcase_16 AC 42 ms
53,964 KB
testcase_17 AC 43 ms
53,316 KB
testcase_18 AC 42 ms
54,344 KB
testcase_19 AC 42 ms
53,820 KB
testcase_20 AC 43 ms
54,480 KB
testcase_21 AC 43 ms
54,700 KB
testcase_22 AC 43 ms
54,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import datetime
y,m,d = map(int,input().split())
now = datetime.date(y,m,d)
comp1 = datetime.date(1989,1,8)
comp2 = datetime.date(2019,4,30)
if comp1 <= now <= comp2:
    print("Yes")
else:
    print("No")
0