結果
問題 | No.2919 Welcome to The Below Green Contenst |
ユーザー |
|
提出日時 | 2024-10-12 14:30:41 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 266 bytes |
コンパイル時間 | 2,579 ms |
コンパイル使用メモリ | 242,956 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-12 14:31:03 |
合計ジャッジ時間 | 3,299 ms |
ジャッジサーバーID (参考情報) |
judge / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 18 |
ソースコード
typedef long long ll; typedef long double ld; #include <bits/stdc++.h> using namespace std; signed main() { ll n,m,k; std::cin >> n>>m>>k; if(n>=m+k){ std::cout << "Yes" << std::endl; }else{ std::cout << "No" << std::endl; } };