結果

問題 No.8033 Test of Russian
ユーザー 007p99lupin
提出日時 2018-04-02 00:38:31
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 279 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 57,224 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-06-26 06:23:36
合計ジャッジ時間 936 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 5 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <algorithm>
using namespace std;

int main()
{
	int N,M,X;
	cin>>N>>M>>X;
	int uso,nokori;
	uso = N-M;
	nokori = N-X;
	if((M>=nokori)&&(M>=3)){
		cout<<"YES"<<endl;
	}
	else{
		cout<<"NO"<<endl;
	}
	return 0;
}
0