Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
45510 | Songgy_King | 试卷-2024 | C++ | Accepted | 0 MS | 248 KB | 165 | 2024-04-14 20:04:13 |
#include<bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n>>m; int days=n/m; if(n%m!=0){ days+=1; } cout<<days<<endl; return 0; }