Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
46669 老方 求和 C++ 通过 1 MS 240 KB 201 2024-05-05 09:04:15

Tests(1/1):


#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; }


测评信息: