結果

問題 No.779 Heisei
ユーザー pypypymipypypymi
提出日時 2022-01-28 18:38:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 660 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 53,760 KB
最終ジャッジ日時 2024-06-09 11:39:59
合計ジャッジ時間 2,321 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,120 KB
testcase_01 AC 45 ms
53,248 KB
testcase_02 AC 45 ms
52,992 KB
testcase_03 WA -
testcase_04 AC 46 ms
53,248 KB
testcase_05 AC 45 ms
52,864 KB
testcase_06 AC 45 ms
53,248 KB
testcase_07 AC 45 ms
53,376 KB
testcase_08 AC 51 ms
53,120 KB
testcase_09 AC 45 ms
53,376 KB
testcase_10 AC 45 ms
53,120 KB
testcase_11 AC 46 ms
53,248 KB
testcase_12 AC 45 ms
52,864 KB
testcase_13 AC 45 ms
53,120 KB
testcase_14 AC 45 ms
53,120 KB
testcase_15 AC 45 ms
53,504 KB
testcase_16 AC 45 ms
53,504 KB
testcase_17 AC 45 ms
52,992 KB
testcase_18 WA -
testcase_19 AC 45 ms
53,120 KB
testcase_20 AC 45 ms
53,376 KB
testcase_21 AC 46 ms
53,376 KB
testcase_22 AC 46 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ある日付が 西暦1989年1月8日 から 西暦2019年4月30日 の区間に含まれる(1989年1月8日・2019年4月30日を含む)とき,
# その日付はHeiseiであると呼びます.

# 標準入力から日付が与えられます.その日付がHeiseiであるかどうか判定するプログラムを書いてください.
# 入力の日付がHeiseiならばYes,HeiseiでないならばNoを出力してください.
y,m,d = map(int,input().split())
import datetime
date1 = datetime.date(y,m,d)
date2 = datetime.date(1989,1,8)
date3 = datetime.date(2019,4,30)
print("Yes") if (date1 > date2) and (date1 < date3) else print("No")


0