| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 84621 | sh25_linzx | 求和 | C++ | Accepted | 0 MS | 244 KB | 192 | 2026-02-12 12:27:09 |
#include<iostream> using namespace std; int main(){ int n,s=0,k; cin>>n; for(int i=0;i<n;++i){ cin>>k; if(k>=10) s+=k; } cout<<s; return 0; }