Python/project_euler/problem_40/sol1.py

46 lines
874 B
Python
Raw Normal View History

"""
2018-10-19 12:48:28 +00:00
Champernowne's constant
Problem 40
An irrational decimal fraction is created by concatenating the positive
integers:
2018-10-19 12:48:28 +00:00
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.
2018-10-19 12:48:28 +00:00
d1 × d10 × d100 × d1000 × d10000 × d100000 × d1000000
"""
2019-10-05 05:14:13 +00:00
def solution():
"""Returns
>>> solution()
210
"""
constant = []
i = 1
while len(constant) < 1e6:
constant.append(str(i))
i += 1
2018-10-19 12:48:28 +00:00
constant = "".join(constant)
2018-10-19 12:48:28 +00:00
return (
int(constant[0])
* int(constant[9])
* int(constant[99])
* int(constant[999])
* int(constant[9999])
* int(constant[99999])
* int(constant[999999])
)
2018-10-19 12:48:28 +00:00
if __name__ == "__main__":
print(solution())