Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
1922 | 吴奕希 | 11整数的除法 | C++ | Wrong Answer | 0 MS | 256 KB | 209 | 2023-12-02 16:46:35 |
# include<iostream> using namespace std; int main() { int a,b; cin>>a>>b; int n = a%b; int m = (a-n)/3; cout<<m<<" "; if(n!=0) { cout<<n; } return 0; }
------Input------
51 16
------Answer-----
3 3
------Your output-----
16 3