結果
| 問題 | No.2919 Welcome to The Below Green Contenst | 
| コンテスト | |
| ユーザー |  startcpp | 
| 提出日時 | 2024-10-12 16:30:57 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 465 bytes | 
| コンパイル時間 | 723 ms | 
| コンパイル使用メモリ | 82,000 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-10-12 16:30:58 | 
| 合計ジャッジ時間 | 1,237 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 18 | 
ソースコード
#include <iostream>
#include <string>
#include <algorithm>
#include <functional>
#include <vector>
#include <stack>
#include <queue>
#include <set>
#include <map>
#include <tuple>
#include <cstdio>
#include <cmath>
#include <cassert>
#define rep(i, n) for(i = 0; i < n; i++)
#define int long long
using namespace std;
signed main() {
    int n, m, k;
    cin >> n >> m >> k;
    if (m + k <= n) cout << "Yes" << endl;
    else cout << "No" << endl;
    return 0;
}
            
            
            
        