标签:python
title:
The sum of the squares of the first ten natural numbers is,
The square of the sum of the first ten natural numbers is,
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,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
标签:python
原文地址:http://blog.csdn.net/china_zoujinyong/article/details/27351419