結果

問題 No.779 Heisei
ユーザー okkuukenken
提出日時 2022-06-01 15:50:31
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 181 bytes
コンパイル時間 665 ms
コンパイル使用メモリ 85,936 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-21 01:31:52
合計ジャッジ時間 1,586 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<tuple>
using namespace std;
int main(){
	int y,m,d;
	cin>>y>>m>>d;
	cout<<(tuple(1989,1,8)<=tie(y,m,d)&&tie(y,m,d)<=tuple(2019,4,30)?"Yes":"No")<<endl;
}
0