mirror of
https://github.com/jlengrand/project_euler.git
synced 2026-03-10 08:41:20 +00:00
25 lines
498 B
Python
Executable File
25 lines
498 B
Python
Executable File
#!/usr/bin/env python
|
|
"""
|
|
##---
|
|
# jlengrand
|
|
#Created on : Fri Jan 13 10:49:29 CET 2012
|
|
#
|
|
# DESCRIPTION : Solves problem 9 of Project Euler
|
|
A Pythagorean triplet is a set of three natural numbers, a b c, for which,
|
|
|
|
a^2 + b^2 = c^2
|
|
For example, 3^2 + 4^2 = 9 + 16 = 25 = 5^2.
|
|
|
|
There exists exactly one Pythagorean triplet for which a + b + c = 1000.
|
|
Find the product abc.
|
|
##---
|
|
"""
|
|
def fun():
|
|
"""
|
|
"""
|
|
|
|
return 1
|
|
|
|
if __name__ == '__main__':
|
|
print "Answer : %d" % (fun())
|