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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python练习题 034:Project Euler 006:和平方与平方和之差相关的知识,希望对你有一定的参考价值。

本题来自 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:和平方与平方和之差的主要内容,如果未能解决你的问题,请参考以下文章

Python练习题 043:Project Euler 015:方格路径

Python练习题 047:Project Euler 020:阶乘结果各数字之和

Python练习题 041:Project Euler 013:求和取前10位数值

Python练习题 042:Project Euler 014:最长的考拉兹序列

Python练习题 038:Project Euler 010:两百万以内所有素数之和

Python练习题 048:Project Euler 021:10000以内所有亲和数之和