結果
| 問題 |
No.779 Heisei
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-08-16 19:25:16 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 32 ms / 1,000 ms |
| コード長 | 166 bytes |
| コンパイル時間 | 162 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-10-09 16:43:10 |
| 合計ジャッジ時間 | 1,749 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
y,m,d=map(int,input().split())
if y==1989 and m==1 and d<=7:print("No");exit()
if y==2019 and m>=5:print("No");exit()
if 1989<=y<=2019:print("Yes");exit()
print("No")