22 Ekim 2016 Cumartesi

Soru 9

Special Pythagorean triplet

Problem 9

A Pythagorean triplet is a set of three natural numbers, a < b < c, for which,
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,
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


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
view raw Soru9.py hosted with ❤ by GitHub

Hiç yorum yok:

Yorum Gönder