結果

問題 No.3220 Forest Creation
コンテスト
ユーザー vjudge1
提出日時 2025-10-26 17:20:46
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 134 bytes
コンパイル時間 1,282 ms
コンパイル使用メモリ 157,832 KB
実行使用メモリ 7,724 KB
最終ジャッジ日時 2025-10-26 17:20:49
合計ジャッジ時間 3,054 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22 WA * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main()
{
	int n,b;
	cin>>n;
	if(n%2==1) cout<<"Yes"<<endl;
	else cout<<"No"<<endl;
}
0