Self powers
The series, 11 + 22 + 33 + ... + 1010 = 10405071317.
Find the last ten digits of the series, 11 + 22 + 33 + ... + 10001000.
Find the last ten digits of the series, 11 + 22 + 33 + ... + 10001000.
A very simple program. I think there is no need for explaining anything in this program.
Program
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://radiusofcircle.blogspot.com | |
import time | |
# time at the start of program execution | |
start = time.time() | |
# solution variable | |
sol = 0 | |
# for loop to loop till 1000 | |
for i in xrange(1, 1001): | |
sol += i**i | |
# printing the last 10 digits | |
print str(sol)[-10:] | |
# time at the end of program execution | |
end = time.time() | |
# printing the total time for execution | |
print end - start |
As always you can download the source code from Github Gist pep48.py
Output
Summary
I don't have any words to talk about this problem. A direct and simple solution. I think even a very beginner of python can write a very fast and optimized solution. As you can see the program executes in less time and I am satisfied with the solution. One can think in mathematical point of view to improve the performance.
As always you can comment in the comment box below, if you have any doubt or didn't understand anything. I will be glad to help you.
Please do comment in the comment box, if you have found any typo or have a better program or different program. Please do comment if you have any suggestion. I will be very happy to view each of them.
You can also contact me.
Thank you. Have a nice day😃!