2007-12-25 00:13:01 -05:00
|
|
|
! Copyright (c) 2007 Aaron Schaefer.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2008-10-02 18:40:49 -04:00
|
|
|
USING: combinators.short-circuit kernel math math.functions
|
|
|
|
math.ranges namespaces project-euler.common sequences ;
|
2007-12-25 00:13:01 -05:00
|
|
|
IN: project-euler.021
|
|
|
|
|
|
|
|
! http://projecteuler.net/index.php?section=problems&id=21
|
|
|
|
|
|
|
|
! DESCRIPTION
|
|
|
|
! -----------
|
|
|
|
|
|
|
|
! Let d(n) be defined as the sum of proper divisors of n (numbers less than n
|
|
|
|
! which divide evenly into n).
|
|
|
|
|
|
|
|
! If d(a) = b and d(b) = a, where a != b, then a and b are an amicable pair and
|
|
|
|
! each of a and b are called amicable numbers.
|
|
|
|
|
|
|
|
! For example, the proper divisors of 220 are 1, 2, 4, 5, 10, 11, 20, 22, 44,
|
|
|
|
! 55 and 110; therefore d(220) = 284. The proper divisors of 284 are 1, 2, 4,
|
|
|
|
! 71 and 142; so d(284) = 220.
|
|
|
|
|
|
|
|
! Evaluate the sum of all the amicable numbers under 10000.
|
|
|
|
|
|
|
|
|
|
|
|
! SOLUTION
|
|
|
|
! --------
|
|
|
|
|
2007-12-25 15:08:37 -05:00
|
|
|
: amicable? ( n -- ? )
|
2007-12-29 14:09:50 -05:00
|
|
|
dup sum-proper-divisors
|
2008-11-06 01:41:24 -05:00
|
|
|
{ [ = not ] [ sum-proper-divisors = ] } 2&& ;
|
2007-12-25 15:08:37 -05:00
|
|
|
|
2007-12-25 00:13:01 -05:00
|
|
|
: euler021 ( -- answer )
|
2009-10-29 15:34:04 -04:00
|
|
|
10000 [1,b] [ dup amicable? [ drop 0 ] unless ] map-sum ;
|
2007-12-25 00:13:01 -05:00
|
|
|
|
|
|
|
! [ euler021 ] 100 ave-time
|
2008-11-05 01:11:15 -05:00
|
|
|
! 335 ms ave run time - 18.63 SD (100 trials)
|
2007-12-25 00:13:01 -05:00
|
|
|
|
2009-03-19 00:05:32 -04:00
|
|
|
SOLUTION: euler021
|