[ZJ]b557: 直角三角形

題目:
http://zerojudge.tw/ShowProblem?problemid=b557
================================================================


#include<iostream>
#include<cmath>
#include<algorithm>
using namespace std;
int main()
{
int T;
scanf("%d",&T);
while(T--)
{
int n,x[110]={0},count = 0;
scanf("%d",&n);
for(int i=0;i<n;i++)
scanf("%d",&x[i]);
sort(x,x+n);
for(int i=0;i<n-2;i++)
{
for(int j=i+1;j<n-1;j++)
{
for(int k=j+1;k<n;k++)
{
if(pow(x[k],2) == pow(x[i],2) + pow(x[j],2))
count++;
}
}
}
printf("%d\n",count);
}
return 0;
}

留言

這個網誌中的熱門文章

[ZJ]b513: 判斷質數-商競103

[ZJ]d212: 東東爬階梯