Special Pythagorean triplet
Problem 9
A Pythagorean triplet is a set of three natural numbers, a < b < c, for which,
There exists exactly one Pythagorean triplet for which a + b + c = 1000.
Find the product abc.
a2 + b2 = c2
For example, 32 + 42 = 9 + 16 = 25 = 52.There exists exactly one Pythagorean triplet for which a + b + c = 1000.
Find the product abc.
Özel Pisagor üçlüsü
Soru 9
Bir pisagor üçlüsü, a < b < c durumunu sağlayan üç adet doğal sayıdan oluşan ve bunlar,
Örneğin, 32 + 42 = 9 + 16 = 25 = 52.
a + b + c = 1000 denkliğini geçerleyen yalnız bir pisagor üçlüsü mevcuttur.
abc çarpımını bulunuz
a2 + b2 = c2
Denkliği de geçerlidir. Örneğin, 32 + 42 = 9 + 16 = 25 = 52.
a + b + c = 1000 denkliğini geçerleyen yalnız bir pisagor üçlüsü mevcuttur.
abc çarpımını bulunuz
Python Kodu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def issquarepyth(a,b,c): | |
return (a*a + b*b) == c*c | |
def issumok(a,b,c): | |
return (a+b+c) == 1000 | |
def findTriplet(): | |
a=0 | |
b=0 | |
c=0 | |
while True: | |
for b in range(0, c): | |
for a in range(0, b): | |
if(issquarepyth(a,b,c) and issumok(a,b,c)): | |
return a*b*c | |
c += 1 |
Hiç yorum yok:
Yorum Gönder