Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
8082 | 刘芃伽 | 方程求解 | C++ | Wrong Answer | 0 MS | 260 KB | 259 | 2025-06-14 09:10:56 |
#include<bits/stdc++.h> using namespace std; int main(){ int m,n; cin>>m>>n; for(int i=0;i<=m/2;i++){ int x=1; if(x*(m-n)==n){ cout<<"Yes"; } else x++; } cout<<"No"; return 0; }
------Input------
188 8800
------Answer-----
Yes
------Your output-----
No