Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
154009 王晏林 19斯诺克比赛 C++ Accepted 1 MS 276 KB 313 2026-05-24 12:02:01

Tests(5/5):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int i,sum=0,t[8]={}; for(int i=1;i<=7;i++)cin>>t[i]; if(t[1]!=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; }