- 拉面秘籍
- 2016-08-19 14:19:35 @
#include <bits/stdc++.h>
using namespace std;
long f[1001]={0};
long hh=0;
int main()
{
int i,j;
int a;
cin>>a;
for(i=1;i<=a;i++) cin>>f[i];
hh=f[a];
for(i=2;i<=a;i++)
{
for(j=a;j>=i;j--) f[j]=f[j]-f[j-1];
hh+=f[a];
}
cout<<hh;
return 0;
}
9 条评论
-
yangche LV 6 @ 2016-11-24 16:17:49
大家不要看 这是错的
(其实唯一的错误就是include前面没有#233~)
-
2016-11-18 15:46:02@
单茂轩在旁边呵呵
-
2016-11-18 14:46:37@
唉!!!!!!!!!!!!!!!!!!11
-
2016-11-18 14:46:29@
谢谢你的题解!!!!!!!!
-
2016-11-18 14:46:18@
真不要脸
-
2016-11-12 10:40:56@
谢谢你的题解
-
2016-11-12 10:40:40@
谢谢你的题解
-
2016-11-12 10:40:21@
#incldue <bits.stdc++.h>
-
2016-08-19 16:00:56@
谢谢你的题解
- 1