結果
問題 | No.779 Heisei |
ユーザー | ok |
提出日時 | 2019-01-11 21:25:26 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 647 bytes |
コンパイル時間 | 557 ms |
コンパイル使用メモリ | 71,216 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-06 01:48:02 |
合計ジャッジ時間 | 1,344 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 23 |
ソースコード
#include<iostream> #include<string> #include<iomanip> #include<cmath> #include<vector> #include<algorithm> using namespace std; #define int long long #define rep(i,n) for(int i = 0; i < (n); i++) #define INF (long long)(1e18) #define MOD (int)(1e9+7) #define yn(f) ((f)?"Yes":"No") #define YN(f) ((f)?"YES":"NO") signed main(){ cout<<fixed<<setprecision(7); bool flag = false; int Y, M, D; cin>>Y>>M>>D; if(1989 <= Y && Y <= 2019){ if(Y == 1989){ if(M == 1){ if(D >= 8) flag = true; } else flag = true; } else if(Y == 2019){ if(M <= 4)flag = true; } else flag = true; } cout<<yn(flag)<<endl; return 0; }