| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 147730 | 李铭洋 | 07a+b>c | C++ | Wrong Answer | 0 MS | 264 KB | 165 | 2026-02-07 13:57:47 |
#include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if(a+b>c) { cout<<"Yes"; } else { cout<<"NO"; } return 0; }
------Input------
103 206 449
------Answer-----
No
------Your output-----
NO