记录编号 139034 评测结果 AAAAAAAAAA
题目名称 [NOIP 2013]积木大赛 最终得分 100
用户昵称 GravatarAsm.Def 是否通过 通过
代码语言 C++ 运行时间 0.009 s
提交时间 2014-11-07 17:25:01 内存使用 0.26 MiB
显示代码纯文本
#include <cstdio>
#include <cctype>
#include <algorithm>
using namespace std;
#if defined DEBUG
FILE *in = fopen("test", "r");
#define out stdout
#else
FILE *in = fopen("BlockNOIP2013.in", "r");
FILE *out = fopen("BlockNOIP2013.out", "w");
#endif
inline void getd(int &x){
	char c = fgetc(in);
	while(!isdigit(c))c = fgetc(in);
	x = c - '0';
	while(isdigit(c = fgetc(in)))x = x * 10 - '0' + c;
}
/*===========================================*/
int n, ans;
int main(){
	getd(n);
	int x, y;
	getd(x);
	ans = x;
	while(--n){
		getd(y);
		ans += x < y ? y - x : 0;
		x = y;
	}
	fprintf(out, "%d\n", ans);
	return 0;
}