首页 > 其他 > 详细

projecteuler---->problem=6----Sum square difference

时间:2014-06-05 11:58:30      阅读:451      评论:0      收藏:0      [点我收藏+]

title:

The sum of the squares of the first ten natural numbers is,

12 + 22 + ... + 102 = 385

The square of the sum of the first ten natural numbers is,

(1 + 2 + ... + 10)2 = 552 = 3025

Hence the difference between the sum of the squares of the first ten natural numbers and the square of the sum is 3025 bubuko.com,布布扣 385 = 2640.

Find the difference between the sum of the squares of the first one hundred natural numbers and the square of the sum.

翻译:

前十个正整数的平方和是:12 + 22 + ... + 102 = 385

前十个正整数的和的平方是:(1 + 2 + ... + 10)2 = 552 = 3025

因此前十个正整数的和的平方,与前十个正数整数的平方和,的差是2640。

现在请你求出前一百个正整数的和的平方与前一百个正整数的平方和的差。

 

解答:

a,b=0,0
m=100
for i in range(1,m+1):
	a += pow(i,2)
b = pow((1+m)*m/2,2)
print b-a


projecteuler---->problem=6----Sum square difference,布布扣,bubuko.com

projecteuler---->problem=6----Sum square difference

原文:http://blog.csdn.net/china_zoujinyong/article/details/27351419

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!