Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
32996 | teacher_lu | 带余除法 | C++ | Accepted | 0 MS | 244 KB | 139 | 2023-12-04 18:58:39 |
#include <bits/stdc++.h> using namespace std; int main() { int x, y; cin >> x >> y; cout << x / y << " " << x % y; return 0; }