結果

問題 No.8033 Test of Russian
ユーザー mlpj56d
提出日時 2018-04-01 22:20:36
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 199 bytes
コンパイル時間 543 ms
コンパイル使用メモリ 55,428 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-26 05:51:21
合計ジャッジ時間 953 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<iostream>
using namespace std;
int main (){
    int n,m,x;
    cin >> n >> m >> x;
    if(n - m <= x) cout << "Yes" << endl;
    else cout << "No" << endl;
    return 0;
}
0