| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 90138 | zhouyuchen | 求n个整数的和 | C++ | Accepted | 100 | 0 MS | 252 KB | 159 | 2024-02-23 19:32:37 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c=0; cin>>a; for(int i=1;i<=a;i++){ cin>>b; c+=b; } cout<<c; return 0; }