| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 142797 | 范照赫 | 04球的体积 | C++ | Wrong Answer | 1 MS | 276 KB | 293 | 2026-01-11 15:36:40 |
#include<iostream> #include<cstdio> #include<cstring> #include<cmath> #include<bits/stdc++.h> using namespace std; int main(){ /*int a; cin>>a; b=a%10; a=a/10; a=a+b*1000; cout<<a<<endl;*/ double n; cin>>n; cout<<(n*3.1415926*n*n*3/4); return 0; }
------Input------
9.2
------Answer-----
3261.7606
------Your output-----
1834.74