| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 150889 | 张浩然 | 方程求解 | C++ | Accepted | 1 MS | 276 KB | 251 | 2026-04-02 10:44:38 |
#include<bits/stdc++.h> using namespace std; int main(){ int m,n; bool x=0; cin>>m>>n; for(int i=0;i<=m;i++){ int j=m-i; if(i*j==n) { x=1; } } if(x==1) { cout<<"Yes"; } else { cout<<"No"; } return 0; }