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