| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 114922 | 郝王骏程 | 方程求解 | C++ | Wrong Answer | 1 MS | 268 KB | 272 | 2025-03-24 20:53:24 |
#include <iostream> using namespace std; int main() { int n,m; cin>>n>>m; for(int x=0;x<=n;x++){ if(x*(m+1)==n){ cout<<"Yes"; return 0; } } cout<<"No"; return 0; }
------Input------
188 8800
------Answer-----
Yes
------Your output-----
No