记录编号 |
437479 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2013]积木大赛 |
最终得分 |
100 |
用户昵称 |
Emine |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.006 s |
提交时间 |
2017-08-14 10:44:22 |
内存使用 |
0.28 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cctype>
using namespace std;
inline void in(int &x){
x=0;int f=1;char t=getchar();
while(!isdigit(t)){if(t=='-')f=-1;t=getchar();}
while(isdigit(t)){x=x*10+t-48;t=getchar();}
x*=f;
}
int n,a,b=0,ans=0;
inline void work(){
in(n);
for(int i=1;i<=n;i++){
in(a);
if(a>b) ans+=a-b;
b=a;
}
printf("%d",ans);
}
int main(){
freopen("BlockNOIP2013.in","r",stdin);
freopen("BlockNOIP2013.out","w",stdout);
work();
}