| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 72837 | sh25_shenpy | 【基础题】计算1+2+…+100的和 | C++ | No Test Data | 0 MS | 0 KB | 155 | 2025-11-02 21:01:55 |
#include<bits/stdc++.h> using namespace std; int main( ) { int s=0; for(int i=1;i<=100;i++){ s+=i; } cout<<s; return 0; }