| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 70102 | sh25_wangtaojie | 带余除法 | C++ | Accepted | 0 MS | 248 KB | 147 | 2025-10-17 14:46:52 |
#include <iostream> using namespace std; int main() { int a,b; cin >>a>>b; cout <<a / b << " " <<a% b << endl; return 0; }