其他分享
首页 > 其他分享> > P4995 跳跳!

P4995 跳跳!

作者:互联网

题目链接 https://www.luogu.com.cn/problem/P4995

。。。。。。。连着做了好几道一样的题啊。。。。为啥他就是黄题


 

放AC代码

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 int main()
 4 {
 5     int n;
 6     long long int ans=0;
 7     cin>>n;
 8     int a[n+5]={0};
 9     for(int i=1;i<=n;i++)
10         cin>>a[i];
11     sort(a+1,a+n+1);
12     int x=0,y=n;
13     while(x<y)
14     {
15         ans+=pow((a[y]-a[x]),2);
16         x++;
17         ans+=pow((a[x]-a[y]),2);
18         y--;
19     }
20     cout<<ans;
21     return 0;
22 }

 

标签:P4995,cn,跳跳,www,long,int,ans
来源: https://www.cnblogs.com/marswithme/p/16116333.html