Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
151478 付博苏逸 方程求解 C++ Wrong Answer 0 MS 268 KB 283 2026-04-12 15:16:17

Tests(1/10):


Code:

#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"; return 0; }else{ cout<<"No"; return 0; } } } return 0; }


Run Info:

------Input------
188 8800
------Answer-----
Yes
------Your output-----
No