| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 147883 | 张蔚林 | 05买水果 | C++ | Wrong Answer | 0 MS | 264 KB | 247 | 2026-02-08 21:49:14 |
#include<iostream> #include<cstdio> using namespace std; int main() { int a=5,b=8,c=12,d=39; printf("%.3lf",(a+b+c)*1.0/3); printf("%d %d",d/a,d%a); printf("%d %d",d/b,d%b); printf("%d %d",d/c,d%c); return 0; }
------Input------
0
------Answer-----
8.333 7 4 4 7 3 3
------Your output-----
8.3337 44 73 3