记录编号 |
135093 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2013]积木大赛 |
最终得分 |
100 |
用户昵称 |
乌龙猹 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.012 s |
提交时间 |
2014-10-31 17:09:32 |
内存使用 |
0.29 MiB |
显示代码纯文本
#include<cstdio>
#include<cctype>
using namespace std;
int ret;
char ch;
int qin()
{
ret=0;
while(ch=getchar(),!isdigit(ch));
while(ret=ret*10+ch-'0',ch=getchar(),isdigit(ch));
return ret;
}
int n;
int Ans=0;
int las,now;
int main()
{
freopen("BlockNOIP2013.in", "r",stdin);
freopen("BlockNOIP2013.out","w",stdout);
n=qin();las=qin();
Ans+=las;
for(int i=2;i<=n;i++)
{
now=qin();
if(now>las) Ans+=now-las;
las=now;
}
printf("%d\n",Ans);
return 0;
}