| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 328934 | 黄浙峰老师 | 【C1-T】圆的面积 | C++ | 通过 | 100 | 10 MS | 244 KB | 186 | 2025-07-07 16:59:29 |
#include<iostream> #include<iomanip> using namespace std; int main(){ int r; double PI=3.141592653589793238; cin>>r; cout<<fixed<<setprecision(7)<<PI*r*r<<endl; }