| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 434097 | 吴鑫昊 | 【C1-7】整除问题 | C++ | 解答错误 | 0 | 8 MS | 244 KB | 173 | 2026-03-26 19:51:33 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,m; cin>>n>>m; if(n/=m){ cout<<1; } else if(n!=m){ cout<<0; } cout<<n; return 0; }