| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 72629 | sh25_zhuwy | 带余除法 | C++ | Accepted | 0 MS | 244 KB | 122 | 2025-11-02 13:35:28 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; cout<<a/b<<" "<<a%b; return 0; }