Skip to main content

Project Euler Problem 63 solution with python

Powerful digit counts

The 5-digit number, $16807=7^5$, is also a fifth power. Similarly, the 9-digit number, $134217728=8^9$, is a ninth power. How many n-digit positive integers exist which are also an nth power?

This problem is very simple. Just a bit of rough paper scratching will give you the answer.

Let us consider a single digit number - 9. Few powers of the number are as follows:
$9^1 = 9$
$9^2 = 81$
$ 9^3 = 729$..
If you have observed, the power of these numbers correspond to the length of the number.

If you consider any two digit numbers, then
$10^1 = 10$
$10^2 = 100$
$10^3 = 1000$..
As you can see, the length of the number is more than the power, so no two digit numbers will satisfy your answer.

In a similar way, at no point does three, four, five etc. digit numbers satisfy the condition. So we only are left with the two digit numbers. Even in two digit numbers, there should be some point of deflection. Lets consider the number 2 $2^1 = 2$
$2^2 = 4$
So far so good, but further on, we will observe that the the power of the number will out weigh the length of the value. $2^3 = 8$
In similar way at some point each of the single digit numbers will not be able to handle this condition and will give up. After that point the condition will never be satisfied. We will stop there and continue with the next number. Have a look at the program and you will understand everything clearly.

Program

In [ ]:
# http://radiusofcircle.blogspot.com

# import time module
import time

# time at the start of program execution
start =  time.time()

# counter to count the number of instances
counter = 0

# for loop to loop from 1 to 9
for i in xrange(1, 10):
    power = 1
    while True:
        if power == len(str(i ** power)):
            counter += 1
        else:
            break
        power += 1

# print the number of instances found
print counter

# time at the end of program execution
end = time.time()

# total time taken for the program execution
print end - start

I don't think there is anything more to explain because I have already explained everything in the algorithm part. The program is just an implementation.

If you want you can download this program from Github gist pep63.py

Output

Summary

This problem was an easy one. It only took a few minutes for me to get to the solution. As we are not doing any extra loops I think that this one will be the perfect solution(may be). But I am really satisfied with the output and the execution time.

If you have any doube or didn't understand anything, comment in the comment box below and I will be glad to help you.

If you have any feedback or suggestions, you are welcome. If you have found any typo or have a different or better program comment in the comment box below. I will be very happy to see your comment.

You can also contact me.

Thank you. Have a nice day😃.

Popular posts from this blog

Project Euler Problem 67 Solution with Python

Maximum path sum II By starting at the top of the triangle below and moving to adjacent numbers on the row below, the maximum total from top to bottom is 23. 3 7 4 2 4 6 8 5 9 3 That is, 3 + 7 + 4 + 9 = 23. Find the maximum total from top to bottom in triangle.txt (right click and 'Save Link/Target As...'), a 15K text file containing a triangle with one-hundred rows.

Problem 43 Project Euler Solution with python

Sub-string divisibility The number, 1406357289, is a 0 to 9 pandigital number because it is made up of each of the digits 0 to 9 in some order, but it also has a rather interesting sub-string divisibility property. Let d 1 be the 1 st digit, d 2 be the 2 nd digit, and so on. In this way, we note the following: d 2 d 3 d 4 =406 is divisible by 2 d 3 d 4 d 5 =063 is divisible by 3 d 4 d 5 d 6 =635 is divisible by 5 d 5 d 6 d 7 =357 is divisible by 7 d 6 d 7 d 8 =572 is divisible by 11 d 7 d 8 d 9 =728 is divisible by 13 d 8 d 9 d 10 =289 is divisible by 17 Find the sum of all 0 to 9 pandigital numbers with this property. One might write a simple solution using direct if else statements for this problem. Using if else statements, the execution time may be a few seconds. But this is not a very good approach. I too had written a program with if else statement which will take each and every permutation of the 0-9 Pandigital and check for the conditions given in the qu...

Add/Embed SVG to Blogger website

In this post I will tell you my method(trick) of adding SVG images in a blogger website or blog. Before starting , the first thin g I am assu m ing is that you are aware of SVG if you are here. If not please see S calable V ec tor G raphics Recently when I tried to embed a SVG image for a post on pygal, I tried uploading the SVG file and blogger Image uploader came up with an error, because of which I had to find some other way.  SVG File upload Error in Blogger  I started sea rc hing Google " Embed SVG in Blogger " . I found blogorrhea , w h ich gave some i nformatio n on add ing SVG directly as a markup , which worked , but I faced another problem using this . Also th is guy has used lot of Javascript which was confusin g for me, being new to using SVG.   So I first t houg ht of learning on h ow to embed SVG in HTML and t his on e worked out. Actually we can embed SVG in HTML i n following ways: Using Object tag Using Iframe tag Using embed...