Project Euler にチャレンジ:Problem 9
TOP
Problem 一覧
Project Euler とは(翻訳)
← Problem 8
Problem 10 →
Problem 9[特別なピタゴラスの3つの数(Special Pythagorean triplet)]
ピタゴラスの定理を満たす3つの数とは a < b < c である自然数で、
a
2
+
b
2
=
c
2
が成り立つものである。
例えば、 3
2
+ 4
2
= 9 + 16 = 25 = 5
2
といったものがある.
a + b + c = 1000 を満たす数は1つだけ存在する。 abc の積はいくつか。
解いたプログラム
PHP