记录编号 468764 评测结果 AAAAAAAAAA
题目名称 [NOIP 2013]积木大赛 最终得分 100
用户昵称 GravatarCSU_Turkey 是否通过 通过
代码语言 C++ 运行时间 0.021 s
提交时间 2017-11-01 22:23:54 内存使用 0.29 MiB
显示代码纯文本
#include<cstdio>
using namespace std;
int ans,n;
int main()
{
	freopen("BlockNOIP2013.in","r",stdin);
	freopen("BlockNOIP2013.out","w",stdout);
	scanf("%d",&n);
	int last=0;
	for(int i=1;i<=n;i++){
		int x;
		scanf("%d",&x);
		if(x>last){
			ans+=x-last;
		}
		last=x;
	}
	printf("%d\n",ans);
	return 0;
}