| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 46669 | 老方 | 求和 | C++ | Accepted | 1 MS | 240 KB | 201 | 2024-05-05 09:04:15 |
#include<iostream> using namespace std; int main(){ int n,sum=0; cin>>n; while(n--){ int t; cin>>t; if(t>=10)sum+=t; } cout<<sum; return 0; }