记录编号 |
464606 |
评测结果 |
AWWWWWWWWW |
题目名称 |
[NOIP 2013]积木大赛 |
最终得分 |
10 |
用户昵称 |
据说这是zzy |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
0.031 s |
提交时间 |
2017-10-25 21:27:22 |
内存使用 |
0.70 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
#include<vector>
#include<cstring>
using namespace std;
int a[100000]={0};
int main()
{
freopen("BlockNOIP2013.in","r",stdin);
freopen("BlockNOIP2013.out","w",stdout);
int n=0;
cin>>n;
int minn=9999;
a[0]=9999;
int now=0,pre=0;
for(int i=1;i<=n;i++)
{
scanf("%d",&a[i]);
if(a[i]>pre)
{
now+=a[i]-pre;
pre=a[i];
}
}
cout<<pre;
}