Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
1323 | 孙浚轩 | 04圆的面积 | C++ | Wrong Answer | 0 MS | 216 KB | 200 | 2023-08-24 16:00:02 |
#include<cstdio> using namespace std; int main(){ const double pi=3.1415926; const double a=4.0/3.0; double r; scanf("%lf",&r); printf("%.4lf",a*pi*r*r*r); return 0; }
------Input------
926
------Answer-----
2693840.26
------Your output-----
3325994769.7507