結果

問題 No.779 Heisei
ユーザー leaf_1415leaf_1415
提出日時 2019-01-11 21:22:54
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 370 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 53,748 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-15 20:24:47
合計ジャッジ時間 1,222 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

int y, m, d;

int main(void)
{
	cin >> y >> m >> d;
	
	if(y == 1989){
		if(m == 1 && d < 8) goto no;
		else goto yes;
	}
	else if(y == 2019){
		if(m >= 5) goto no;
		else goto yes;
	}
	else if(y > 1989 && y < 2019) goto yes;
	else goto no;
	
	yes:;
	cout << "Yes" << endl;
	return 0;
	
	no:;
	cout << "No" << endl;
	return 0;
}
0