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