| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 151483 | 付博苏逸 | 方程求解 | C++ | Wrong Answer | 1 MS | 272 KB | 283 | 2026-04-12 15:24:20 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,m; cin>>n>>m; for(int x=1;x<=n;x++){ for(int y=1;y<=n;y++){ if(x+y==m&&x*y==n){ cout<<"Yes"; return 0; }else{ cout<<"No"; return 0; } } } return 0; }
------Input------
188 8800
------Answer-----
Yes
------Your output-----
No