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
def p40
mult=1
i=0
n=0
targets=(0..6).map{|j|10**j}
while(targets.length>0)
n+=1
s=n.to_s
i+=s.length
if(targets.first<=i)
j=i-targets.shift
multie=s.reverse[j..j].to_i
puts multie.to_s+ " "+s
mult*=multie
end
end
puts mult
end