比赛 专项训练十题 评测结果 AAAAAAAAAA
题目名称 积木大赛 最终得分 100
用户昵称 Emine 运行时间 0.020 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2017-05-30 20:02:35
显示代码纯文本
#include<algorithm>
#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;

typedef long long ll;

int main(){
	freopen("BlockNOIP2013.in","r",stdin);
	freopen("BlockNOIP2013.out","w",stdout);
    int n,x1=0,x2=0;
    ll ans=0;
    scanf("%d",&n);
    for(int i=1;i<=n;i++){
        scanf("%d",&x1);
        if(x1>x2) ans+=x1-x2;
        x2=x1;
    }
    printf("%lld\n",ans);
    return 0;
}