結果

問題 No.779 Heisei
ユーザー mai
提出日時 2018-10-26 10:56:01
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 19 ms / 1,000 ms
コード長 263 bytes
コンパイル時間 2,162 ms
コンパイル使用メモリ 194,808 KB
最終ジャッジ日時 2025-01-06 14:44:49
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

vector<int> low({1989, 1, 8}), high({2019, 4, 30}), now(3);
int main() {
    cin >> now[0] >> now[1] >> now[2];
    if (low <= now && now <= high) cout << "Yes" << endl;
    else cout << "No" << endl;
    return 0;
}
0