| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 147888 | 于墨轩 | 04球的体积 | C++ | Accepted | 1 MS | 272 KB | 277 | 2026-02-08 23:00:24 |
#include <bits/stdc++.h> using namespace std; const double PI = 3.1415926; int main() { double radius; cin >> radius; double volume = (4.0 / 3) * PI * radius * radius * radius; cout << fixed << setprecision(4) << volume << endl; return 0; }