Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
1354 | 孙浚轩 | 05买水果 | C++ | Compile Error | 0 MS | 0 KB | 297 | 2023-08-25 14:53:22 |
#include<iostream> #include<iomanip> using namespace std; int main(){ int b=5,a=8,g=12; double av; av=(b+a+g)/3.0; cout<<fixed<<setprecision(3)<<av<<"\n"; cout<<39/b<<" "<<39%b<<"\n"; cout<<39/a<<" "<<39%a<<"\n"; cout<<39/g<<" "<<39%g<<"\n"; return 0; }
mount: mount /usr on /home/judge/jnoj/judge/run/0/usr failed: No space left on device