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