| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 78444 | sh25_zhangjiajia | 【基础题】求和(2) | C++ | Accepted | 0 MS | 244 KB | 207 | 2025-12-26 15:46:27 |
#include<bits/stdc++.h> using namespace std; int main() { double s=0.000000; for(double i=1.00;i<=100.00;i++) { s+=1.00/i; } cout<<fixed<<setprecision(3)<<s; return 0; }