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

来源:互联网 发布:微博数据抓取 编辑:程序博客网 时间:2024/05/21 23:00

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− 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,0m=100for i in range(1,m+1):a += pow(i,2)b = pow((1+m)*m/2,2)print b-a


0 0
原创粉丝点击