Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
102413 | 刘子睿 | 05买水果 | C++ | Wrong Answer | 1 MS | 256 KB | 190 | 2024-12-21 15:42:04 |
#include<bits/stdc++.h> using namespace std; int main(){ int a = 39; cout<<(5+8+12)/3<<endl; cout<<a/5<<' '<<a%5<<endl; cout<<a/8<<' '<<a%8<<endl; cout<<a/12<<' '<<a%12<<endl; }
------Input------
0
------Answer-----
8.333 7 4 4 7 3 3
------Your output-----
8 7 4 4 7 3 3