Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
38849 奚晨瑞 奥运奖牌计数 C++ 通过 0 MS 240 KB 259 2024-01-28 17:19:20

Tests(1/1):


#include<iostream> using namespace std; int main() { int n,gold,silv,bron,G,S,B,T; G=0; S=0; B=0; cin>>n; while(n--){ cin>>gold>>silv>>bron; G+=gold; S+=silv; B+=bron; } T=G+B+S; cout<<G<<" "<<S<<" "<<B<<" "<<T; return 0; }


测评信息: