結果

問題 No.8033 Test of Russian
ユーザー ktguy
提出日時 2018-04-01 23:21:01
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 204 bytes
コンパイル時間 492 ms
コンパイル使用メモリ 64,472 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-26 06:07:00
合計ジャッジ時間 1,017 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

int N, M, X;

void solve() {
    if(N - M + 3 <= X ) cout << "Yes" << endl;
    else cout << "No" << endl;
}

int main() {
    cin >> N >> M >> X;
    solve();
}
0