Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
43481 | zhangyanshuo | 带余除法 | C++ | Accepted | 0 MS | 248 KB | 127 | 2024-03-16 10:44:28 |
#include<iostream> using namespace std; int main() { int a; int b; cin>>a>>b; cout<<a/b<<" "<<a%b; return 0; }