codegay 当前离线
少校
#=julia 求前一百个自然数的平方的和与和的平方之差 https://projecteuler.net/problem=6 2016年4月13日 21:09:32 codegay =# @time @show sum(1:100)^2-sum([r^2 for r in 1:100]) #= sum(1:100) ^ 2 - sum([r ^ 2 for r = 1:100]) = 25164150 0.000585 seconds (22 allocations: 1.672 KB) 25164150 =# @time @show (+(1:100...))^2-(+([r^2 for r=1:100]...)) #= julia> @time @show (+(1:100...))^2-(+([r^2 for r=1:100]...)) +(1:100...) ^ 2 - +([r ^ 2 for r = 1:100]...) = 25164150 0.000619 seconds (193 allocations: 9.828 KB) 25164150 =#复制代码
happy886rr 当前离线
等待验证会员
# Python EulerPJ-006 N=int(input("请输入一个自然数N:"));print("前{0}个自然数的平方的和与和的平方之差为:{1}".format(N,int((N-1)*N*(N+1)*(3*N+2)/12)))复制代码
TOP
""" python 求前一百个自然数的平方的和与和的平方之差 https://projecteuler.net/problem=6 2016年4月13日 21:09:32 codegay """ print(sum(range(1,101))**2-sum(map(lambda x:x**2,range(1,101)))) """ 25164150 [Finished in 0.1s] """复制代码