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

Python练习题 034:Project Euler 006:和平方与平方和之差

时间:2016-10-29 01:50:29      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:problem   ...   nat   and   减法   net   tween   http   sum   

本题来自 Project Euler 第6题:https://projecteuler.net/problem=6

# Project Euler: Problem 6: Sum square difference
# The sum of the squares of the first ten natural numbers is,
# 1**2 + 2**2 + ... + 10**2 = 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.
# Answer: 25164150


x = y = 0
for i in range(1, 101):
    x += i
    y += i**2
print(x**2 - y)

这题纯粹是送分题,就是简单的加减法和乘方计算。应该没啥算法可言吧。。。

Python练习题 034:Project Euler 006:和平方与平方和之差

标签:problem   ...   nat   and   减法   net   tween   http   sum   

原文地址:http://www.cnblogs.com/iderek/p/6009621.html

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