Euler Project question 48 in python way

# The series, 11 + 22 + 33 + ... + 1010 = 10405071317.

# Find the last ten digits of the series, 11 + 22 + 33 + ... + 10001000.

import time
start = time.time()
print "last ten digits was %s and cost %s seconds" % (str(sum([i**i for i in range(1, 1001)]))[-10:], time.time() - start)

posted @ 2014-10-19 20:40  dergum  阅读(87)  评论(0编辑  收藏  举报