| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 75384 | sh25_shenpy | 求和 | C++ | Accepted | 0 MS | 248 KB | 220 | 2025-12-06 10:36:23 |
#include<iostream> using namespace std; int main() { int n,c,x=0; cin>>n; for(int i=1;i<=n;i++){ cin>>c; if(c>=10){ x+=c; } } cout<<x; return 0; }