| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 46678 | sunhuifeng | 求和 | C++ | Accepted | 0 MS | 244 KB | 177 | 2024-05-05 09:08:17 |
#include<iostream> using namespace std; int main(){ int a,ans=0; cin>>a; for(int i=1;i<=a;i++){ int b; cin>>b; if(b>=10) ans+=b; } cout<<ans; return 0; }