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