| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 73182 | sh25_shenpy | 【基础题】求和(2) | C++ | Wrong Answer | 0 MS | 248 KB | 168 | 2025-11-07 18:00:33 |
#include <bits/stdc++.h> using namespace std; int main( ) { double a=0; for(int i=1;i<=100;i++) { a+=(1/i); } cout<<a; return 0; }