mirror of
https://github.com/correl/euler.git
synced 2024-11-23 19:19:53 +00:00
Haskell 009
This commit is contained in:
parent
856afe175e
commit
c0ab42edf9
1 changed files with 27 additions and 0 deletions
27
haskell/e009.hs
Normal file
27
haskell/e009.hs
Normal file
|
@ -0,0 +1,27 @@
|
|||
{- Find the only Pythagorean triplet, {a, b, c}, for which a + b + c = 1000.
|
||||
|
||||
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.
|
||||
-}
|
||||
|
||||
import Text.Printf
|
||||
|
||||
triplet sum = do
|
||||
let cs = reverse (takeWhile (<= sum - 3) [3,5..])
|
||||
let tri = head (concat (map (\x -> diffs sum x) cs))
|
||||
let (a, b, c) = tri
|
||||
a * b * c
|
||||
diffs sum c = do
|
||||
let diff = sum - c
|
||||
let range = [1..(floor ((fromIntegral diff) / 2)) + 1]
|
||||
let triangles = filter is_triangle (map (\x -> (x, diff - x, c)) range)
|
||||
triangles
|
||||
is_triangle (a, b, c) =
|
||||
a^2 + b^2 == c^2
|
||||
|
||||
main = do
|
||||
printf "Pythagorean triplet product having a + b + c = 1000: %d\n" (triplet 1000 :: Integer)
|
Loading…
Reference in a new issue