| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5162 | 吴乐涵 | 与圆相关的计算 | C++ | Wrong Answer | 0 | 0 MS | 248 KB | 184 | 2020-07-27 20:53:34 |
#include<bits/stdc++.h> using namespace std; int main(){ double r,d,c,s,pi=3.14159; cin>>r; d=2*r; c=2*pi*r; s=r*r*pi; printf("%.4lf %.4lf %.4lf",d,c,s); return 0; }