| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5065 | lizhengqian2008 | 与圆相关的计算 | C++ | Wrong Answer | 0 | 0 MS | 256 KB | 185 | 2020-07-26 18:16:57 |
#include <bits/stdc++.h> using namespace std; int main(){ double r,d,c,s; cin>>r; d=r*2; c=d*3.14159; s=r*r*3.14159; printf("%1.4lf %1.4lf %1.4lf" ,d,c,s); return 0; }