Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
43534 | zouqinghua | 带余除法 | C++ | Accepted | 0 MS | 248 KB | 169 | 2024-03-16 14:30:38 |
#include<bits/stdc++.h> using namespace std; int arr1[20005],arr2[20005],sum[20005]; int main() { int a,b; cin>>a>>b; cout<<a/b<<" "<<a%b; return 0; }