| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 12393 | 罗炜翰 | 求S的值 | C++ | Wrong Answer | 0 | 1 MS | 260 KB | 214 | 2025-07-11 14:26:27 |
#include<bits/stdc++.h> using namespace std; void z() { int s=2,x=2,sum=1; for(int i=1;s<5000;i++) { s+=x; sum+=s; x++; } cout<<sum; } int main() { z(); return 0; }