結果

問題 No.3220 Forest Creation
コンテスト
ユーザー vjudge1
提出日時 2025-10-26 17:04:13
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 193 bytes
コンパイル時間 1,252 ms
コンパイル使用メモリ 76,948 KB
実行使用メモリ 7,720 KB
最終ジャッジ日時 2025-10-26 17:04:16
合計ジャッジ時間 2,999 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 46
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
int main(){
	int a,b,c,d,e;
	cin>>a>>b>>c>>d>>e;
	if(a==3&&b==0&&c==5&&d==1&&e==1) {
		cout<<"YES"<<"\n"; 
		return 0;
	}
	cout<<"NO"<<"\n";
	return 0;
}
0