Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
1315 | 孙浚轩 | 04圆的面积 | C++ | Wrong Answer | 0 MS | 220 KB | 165 | 2023-08-24 15:52:25 |
#include<cstdio> using namespace std; int main(){ const double pi=3.1415926; double r; scanf("%lf",&r); printf("%lf",pi*r*r); return 0; }
------Input------
926
------Answer-----
2693840.26
------Your output-----
2693840.256278