比赛 | 专项训练十题 | 评测结果 | AAAAAAAAAA |
---|---|---|---|
题目名称 | 积木大赛 | 最终得分 | 100 |
用户昵称 | Hyoi_ctime | 运行时间 | 0.020 s |
代码语言 | C++ | 内存使用 | 0.31 MiB |
提交时间 | 2017-05-30 20:52:49 | ||
#include<algorithm> #include<iostream> #include<cstdio> using namespace std; int n; int y=0; int x=0; long long int ans=0; int main(){ freopen("BlockNOIP2013.in","r",stdin); freopen("BlockNOIP2013.out","w",stdout); scanf("%d",&n); for(int i=1;i<=n;i++){ scanf("%d",&y); if(y>x) ans+=y-x; x=y; } printf("%lld\n",ans); return 0; }