Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
89010 | 林嘉乐 | 05买水果 | C++ | Wrong Answer | 0 MS | 260 KB | 225 | 2024-08-21 17:34:35 |
#include<iostream> using namespace std; int main() { int a,c,k; a=5; c=8; k=12; cout<<(a+c+k)/3<<endl; cout<<39/a<<" "<<39%a<<endl; cout<<39/c<<" "<<39%c<<endl; cout<<39/k<<" "<<39%k<<endl; return 0; }
------Input------
0
------Answer-----
8.333 7 4 4 7 3 3
------Your output-----
8 7 4 4 7 3 3