| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 157321 | 余建成 | 方程求解 | C++ | Wrong Answer | 0 MS | 272 KB | 181 | 2026-07-22 14:20:26 |
#include<iostream> using namespace std; int main(){ int n,m; cin>>m>>n; for(int x=1;x<m;x++){ if(x*(m-x)==n){ cout<<"Yes"<<endl; return 0; } } return 0; }
------Input------
111 11
------Answer-----
No
------Your output-----