| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 122870 | 林麒瑞 | 图书分发 | C++ | Accepted | 100 | 0 MS | 248 KB | 141 | 2024-01-22 16:51:17 |
#include<bits/stdc++.h> using namespace std; int main(){ int m,n; cin>>m>>n; cout<<int(m/n)<<" "<<m-(m/n*n)<<endl; return 0; }