| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 12329 | 陈颖钧 | 数列求和 | C++ | Wrong Answer | 0 | 1 MS | 256 KB | 191 | 2025-07-09 17:25:08 |
#include<bits/stdc++.h> using namespace std; int n,i,s,j; int h(int n){ for(i=1;i<=n;i++){ j+=i; s+=j; } return s; } int main(){ cin>>n; cout<<h(n); }