Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
96500 | 程余天皓 | 方程求解 | C++ | Wrong Answer | 1 MS | 268 KB | 245 | 2024-11-09 11:09:09 |
#include<bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n>>m; for(int x=0;x<=n;x++){ for(int y=0;y<=n;y++){ if(x+y==n&&x*y==m){ cout<<"Yes"; } } } cout<<"No"; return 0; }
------Input------
188 8800
------Answer-----
Yes
------Your output-----
YesYesNo