結果
問題 |
No.8033 Test of Russian
|
ユーザー |
![]() |
提出日時 | 2019-09-19 10:18:13 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 279 bytes |
コンパイル時間 | 1,487 ms |
コンパイル使用メモリ | 164,984 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-18 14:05:05 |
合計ジャッジ時間 | 2,018 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 4 WA * 3 |
ソースコード
//#include<bits/stdc++.h> #include"bits/stdc++.h" using namespace std; #ifdef LOCAL_DEBUG #include "LOCAL_DEBUG.hpp" #endif #define int long long signed main(){ int a,b,c; cin >> a >> b >> c; if(a-b < c) cout << "YES" << endl; else cout << "NO" << endl; return 0; }