| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 74278 | jdf25_wangchs | 试卷-2024 | C++ | Accepted | 0 MS | 240 KB | 193 | 2025-11-24 19:43:54 |
#include<iostream> using namespace std; int main() { int n, m; cin>>n>>m; if(n % m == 0) { cout<<n/m<<endl; } else { cout<<n/m+1<<endl; } }