2008-02-02 18:53:32 -05:00
|
|
|
|
! Copyright (c) 2008 Aaron Schaefer.
|
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
|
|
|
USING: kernel math math.parser sequences strings ;
|
|
|
|
|
IN: project-euler.040
|
|
|
|
|
|
|
|
|
|
! http://projecteuler.net/index.php?section=problems&id=40
|
|
|
|
|
|
|
|
|
|
! DESCRIPTION
|
|
|
|
|
! -----------
|
|
|
|
|
|
|
|
|
|
! An irrational decimal fraction is created by concatenating the positive
|
|
|
|
|
! integers:
|
|
|
|
|
|
|
|
|
|
! 0.123456789101112131415161718192021...
|
|
|
|
|
|
|
|
|
|
! It can be seen that the 12th digit of the fractional part is 1.
|
|
|
|
|
|
|
|
|
|
! If dn represents the nth digit of the fractional part, find the value of the
|
|
|
|
|
! following expression.
|
|
|
|
|
|
|
|
|
|
! d1 × d10 × d100 × d1000 × d10000 × d100000 × d1000000
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
! SOLUTION
|
|
|
|
|
! --------
|
|
|
|
|
|
|
|
|
|
<PRIVATE
|
|
|
|
|
|
|
|
|
|
: (concat-upto) ( n limit str -- str )
|
|
|
|
|
2dup length > [
|
|
|
|
|
pick number>string over push-all rot 1+ -rot (concat-upto)
|
|
|
|
|
] [
|
|
|
|
|
2nip
|
|
|
|
|
] if ;
|
|
|
|
|
|
|
|
|
|
: concat-upto ( n -- str )
|
|
|
|
|
SBUF" " clone 1 -rot (concat-upto) ;
|
|
|
|
|
|
|
|
|
|
: nth-integer ( n str -- m )
|
2008-02-06 22:15:47 -05:00
|
|
|
|
[ 1- ] dip nth 1string string>number ;
|
2008-02-02 18:53:32 -05:00
|
|
|
|
|
|
|
|
|
PRIVATE>
|
|
|
|
|
|
|
|
|
|
: euler040 ( -- answer )
|
|
|
|
|
1000000 concat-upto { 1 10 100 1000 10000 100000 1000000 }
|
|
|
|
|
[ swap nth-integer ] with map product ;
|
|
|
|
|
|
|
|
|
|
! [ euler040 ] 100 ave-time
|
|
|
|
|
! 1002 ms run / 43 ms GC ave time - 100 trials
|
|
|
|
|
|
|
|
|
|
MAIN: euler040
|