| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 13934 | 孙喻桐 | 求n个整数的和 | C++ | Accepted | 100 | 0 MS | 252 KB | 228 | 2021-02-05 08:57:53 |
#include<bits/stdc++.h> using namespace std; int n,x; long long ans; int main(){ cin>>n; // n=1 while(n--){ cin>>x; ans+=x; } // for(int i=1;i<=n;i++){ // cin>>x; // ans+=x; // } cout<<ans; return 0; }