結果

問題 No.779 Heisei
ユーザー firiexpfiriexp
提出日時 2019-01-11 21:23:25
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 657 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-15 19:05:44
合計ジャッジ時間 1,631 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <limits>
#include <iostream>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>

static const int MOD = 1000000007;
using ll = long long;
using u32 = unsigned;
using namespace std;

template<class T>
constexpr T INF = ::numeric_limits<T>::max() / 32 * 15 + 208;

int main() {
    int y, m, d;
    cin >> y >> m >> d;
    bool ans = false;
    if(1990 <= y && y <= 2018) ans = true;
    else if(y == 1989){
        if(!(m == 1 && d <= 7)) ans = true;
    }else if(y == 2019){
        if(m <= 4) ans = true;
    }
    puts(ans ? "Yes" : "No");
    return 0;
}
0