| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 45625 | liusiyu | 试卷-2024 | C++ | Accepted | 0 MS | 240 KB | 143 | 2024-04-18 22:04:36 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; if(a%b==0) cout<<a/b; else cout<<a/b+1; return 0; }