結果
| 問題 | No.2919 Welcome to The Below Green Contenst |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-10-12 14:30:32 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 16 ms / 2,000 ms |
| コード長 | 199 bytes |
| 記録 | |
| コンパイル時間 | 1,003 ms |
| コンパイル使用メモリ | 210,112 KB |
| 実行使用メモリ | 9,240 KB |
| 最終ジャッジ日時 | 2026-07-05 22:23:26 |
| 合計ジャッジ時間 | 2,272 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 18 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
int n, m, k;
cin >> n >> m >> k;
cout << (m + k <= n ? "Yes" : "No") << '\n';
}