Special Pythagorean triplet
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Special Pythagorean triplet相关的知识,希望对你有一定的参考价值。
problem 9:Special Pythagorean triplet
题意:若a+b+c=1000,且a2+b2=c2,求abc
代码如下:
1 #ifndef PRO9_H_INCLUDED 2 #define PRO9_H_INCLUDED 3 4 int solve(){ 5 for(int i=1;i<=1000;++i) 6 for(int j=1;i+j<1000;++j) 7 if(i*i+j*j==(1000-i-j)*(1000-i-j)) 8 return i*j*(1000-i-j); 9 } 10 11 #endif // PRO9_H_INCLUDED
以上是关于Special Pythagorean triplet的主要内容,如果未能解决你的问题,请参考以下文章
Pythagorean Triples CodeForces - 707C 推理题,大水题
PE9 Special Pythagorean triplet
[Perl 6][Project Euler] Problem 9 - Special Pythagorean triplet