| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 84107 | sh25_linzx | 带余除法 | C++ | Accepted | 0 MS | 244 KB | 135 | 2026-02-08 16:45:34 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; cout<<a/b<<" "<<a%b; return 0; }