Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
6000 季洁 电梯 C++ 解答错误 0 44 MS 248 KB 279 2020-08-23 16:44:29

Tests(0/1):


#include<bits/stdc++.h> using namespace std; int main(){ int t,n,b,sum,a; cin>>t; while(t){ cin>>n; sum=0; a=0; while(n){ cin>>b; if(b>a) sum+=(b-a)*6+5; if(b<a) sum+=(a-b)*4+5; a=b; n--; } cout<<sum<<endl; t--; } return 0; }


测评信息: