| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 73109 | sh25_shenpy | 求圆周率的值 | C++ | No Test Data | 0 MS | 0 KB | 143 | 2025-11-05 20:35:21 |
#include <bits/stdc++.h> using namespace std; int main( ) { double pi=113/355; cout<<fixed<<setprecision(3)<<pi; return 0; }