Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
96536 程余天皓 方程求解 C++ Accepted 47 MS 272 KB 265 2024-11-09 11:13:06

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n>>m; for(int x=1;x<=n-1;x++){ for(int y=1;y<=n-1;y++){ if(x+y==n&&x*y==m){ cout<<"Yes"; return 0; } } } cout<<"No"; return 0; }