Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
45503 | 徐若宸 | 试卷-2024 | C++ | Accepted | 1 MS | 248 KB | 155 | 2024-04-14 19:59:17 |
#include<bits/stdc++.h> using namespace std; int main(){ float n,m; cin>>n>>m; int sum=n/m; if(n/m>=(int)n/m) sum++; cout<<sum; return 0; }