Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
123001 | 凌嘉圻 | 图书分发 | C++ | Accepted | 100 | 0 MS | 244 KB | 153 | 2024-01-22 17:05:21 |
#include<iostream> using namespace std; int main() { int m,n,a,b; cin>>m>>n; a=m/n; b=m-a*n; cout<<a<<" "<<b<<endl; return 0; }