Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
27392 | yuhengyang | 带余除法 | C++ | 通过 | 0 MS | 248 KB | 165 | 2023-10-04 12:20:33 |
#include<iostream> #include<cstdio> #include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; cout<<(int)a/b<<" "<<a%b; return 0; }