Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
45511 | yuzhengxun | 试卷-2024 | C++ | 解答错误 | 0 MS | 252 KB | 193 | 2024-04-14 20:07:01 |
#include<bits/stdc++.h> using namespace std; int main() { int n,m,s=0; cin>>n>>m; if(m%n==0){ cout<<m/n; return 0; }else if(m%n==1){ s+=1; } cout<<s; return 0; }