結果

問題 No.8033 Test of Russian
ユーザー creep04
提出日時 2018-04-01 22:31:09
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 153 bytes
コンパイル時間 1,622 ms
コンパイル使用メモリ 165,332 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-26 05:56:16
合計ジャッジ時間 2,148 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other AC * 3 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int n, m, x;

int main() {
	cin >> n >> m >> x;
	int li = n-m;
	cout << (li-x>0 ? "YES" : "NO") << endl;
}
0