码迷,mamicode.com
首页 > 编程语言 > 详细

Euler Project question 48 in python way

时间:2014-10-19 21:24:41      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:io   os   ar   for   on   art   as   python   print   

# 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)

Euler Project question 48 in python way

标签:io   os   ar   for   on   art   as   python   print   

原文地址:http://www.cnblogs.com/cyberpaz/p/4035434.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!