結果

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

ソースコード

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){
		cout<<"YES"<<endl;
	}
	else{
		cout<<"NO"<<endl;
	}
	return 0;
}
0