鱼C论坛

 找回密码
 立即注册
查看: 1881|回复: 2

题目125:找出是回文的平方数之和

[复制链接]
发表于 2016-8-23 16:44:22 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
Palindromic sums

The palindromic number 595 is interesting because it can be written as the sum of consecutive squares: 62 + 72 + 82 + 92 + 102 + 112 + 122.

There are exactly eleven palindromes below one-thousand that can be written as consecutive square sums, and the sum of these palindromes is 4164. Note that 1 = 02 + 12 has not been included as this problem is concerned with the squares of positive integers.

Find the sum of all the numbers less than 108 that are both palindromic and can be written as the sum of consecutive squares.


题目:

595 这个回文数很有趣,它可以被写作连续数字的平方数之和:62 + 72 + 82 + 92 + 102 + 112 + 122

1000 以下一共有 11 个这样可以写作连续数字平方和的回文数,这 11 个数字的和是 4164。注意 1 = 02 + 12 没有被算作在内,因为该题目只考虑正整数的平方和。

求 108 以下所有  1). 既是回文; 2). 又可以写成连续数字平方和,的数字之和。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2016-8-31 17:36:01 | 显示全部楼层
这个比前面的简单
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2016-11-29 22:01:48 | 显示全部楼层

确实比较简单
#coding:utf-8
def is_cycle(n):
    return True if str(n) == str(n)[::-1] else False

limit = 10**8
window_s = 1
window_e = int(limit ** 0.5)
lst = []
while window_s<window_e:
    s = window_s*window_s
    for i in range(window_s+1,window_e):
        s += i*i
        if s >= limit:
            break
        if is_cycle(s):
            lst.append(s)
    window_s += 1
print (sum(set(lst)))
输出:
2906969179
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-22 21:26

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表