| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5087 | 欧阳漌 | 取余数与取整数 | C++ | Wrong Answer | 0 | 0 MS | 240 KB | 143 | 2020-07-27 13:54:00 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,ans1,ans2; ans1=a%b; ans2=a/b; cout<<ans1<<" "<<ans2; return 0; }