Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
45508 | ☩Deutschland☩ | 试卷-2024 | C++ | Accepted | 0 MS | 240 KB | 119 | 2024-04-14 20:03:55 |
#include<bits/stdc++.h> using namespace std; int main(){ float n,m; cin>>n>>m; int c=ceil(n/m); cout<<c; }