mu chance or much chance ?

日々の戯れ言

Project Euler 40

  • 問題

Problem 40:Champernowne's constant
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

  • 解答例
temp = ['0']
i = 1
while len(temp) <= 1000000:
    tempList = list(str(i))
    temp.extend(tempList)
    i += 1

mul = 1
for i in range(7):
    mul *= int(temp[10 ** i])

print(mul)