| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 153988 | 王晏林 | 19斯诺克比赛 | C++ | Compile Error | 0 MS | 0 KB | 315 | 2026-05-24 11:54:55 |
#include<bits/stdc++.h> using namespace std; int main (){ int t[8]={},sum=0; for(int i=1;i<=7;i++){ cin>>t[i]; if(t[i]!=0){ i=7; while(t[i]==0)i--; if(i==1){ cout<<1<<endl; return 0; } else sum+=t[1]*(1+i); } for(int j=2;j<=7;j++)sum+=t[j]*j; cout<<sum<<endl; return 0; }
Main.cc: In function 'int main()': Main.cc:19:1: error: expected '}' at end of input } ^