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