比赛 专项训练十题 评测结果 AAAAAAAAAA
题目名称 积木大赛 最终得分 100
用户昵称 Menamovic 运行时间 0.028 s
代码语言 C++ 内存使用 0.70 MiB
提交时间 2017-05-30 18:43:40
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>

using namespace std;

const int MC=100100;
int n;
int a[MC];
int height=0;
int ans=0;

int main()
{
	freopen("BlockNOIP2013.in","r",stdin);
	freopen("BlockNOIP2013.out","w",stdout);
	scanf("%d",&n);
	for(int i=0;i<n;i++)
	{
		scanf("%d",&a[i]);
		if(a[i]>height) ans+=(a[i]-height);
		height=a[i];
	}
	printf("%d",ans);
	return 0;
}