| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 76443 | sh25_wanghy | 带余除法 | C++ | Accepted | 0 MS | 244 KB | 147 | 2025-12-19 14:59:05 |
#include <iostream> using namespace std; int main() { int a,b; cin >>a>>b; cout <<a / b << " " <<a% b << endl; return 0; }