比赛 |
专项训练十题 |
评测结果 |
AAAAAAAAAA |
题目名称 |
积木大赛 |
最终得分 |
100 |
用户昵称 |
TARDIS |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.06 MiB |
提交时间 |
2017-05-30 17:52:20 |
显示代码纯文本
#include<bits/stdc++.h>
#define COGS
using namespace std;
int n,temp1,ans,temp2;
inline void in(){
#ifdef COGS
freopen("BlockNOIP2013.in","r",stdin);
freopen("BlockNOIP2013.out","w",stdout);
#endif
scanf("%d",&n);
}
inline void deal(){
for (int i=1;i<=n;i++){
scanf("%d",&temp2);
if (temp2>temp1) ans+=temp2-temp1;
temp1=temp2;
}
printf("%d",ans);
}
int Main(){
in();
deal();
return 0;
}
int main(){;}
int xlm=Main();