码迷,mamicode.com
首页 > 其他好文 > 详细

EularProject 32: 数字1-9排列构成乘法等式

时间:2015-07-25 22:59:43      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:数字1-9

Pandigital products
Problem 32
We shall say that an n-digit number is pandigital if it makes use of all the digits 1 to n exactly once; for example, the 5-digit number, 15234, is 1 through 5 pandigital.

The product 7254 is unusual, as the identity, 39 × 186 = 7254, containing multiplicand, multiplier, and product is 1 through 9 pandigital.

Find the sum of all products whose multiplicand/multiplier/product identity can be written as a 1 through 9 pandigital.

HINT: Some products can be obtained in more than one way so be sure to only include it once in your sum.

Answer:
45228
Completed on Sat, 25 Jul 2015, 15:13
python code:

from math import sqrt
def func(x):
    s0=set(str(x))
    for i in range(2,min(100,int(sqrt(x)+1))):
        if x%i==0:
            s1=set(str(i))
            s2=set(str(x//i))
            s=s0|s1|s2
            if len(s)==9 and ‘0‘ not in s:
                return True
    return False

result=0
for i in range(1000,9999):
    Pstr=str(i)
    if len(set(Pstr))==4 and ‘0‘ not in Pstr:
        if func(i):
            result+=i
            print(i)

print(result)

这里因为要求乘积不能重复,可以考虑对乘积候选项循环判断,把满足条件的加起来,并且很容易反证证明乘积项数字位数只能为4。

数字1-9是一个有趣的问题,更多问题可以参考
http://www.worldofnumbers.com/ninedig1.htm

版权声明:本文为博主原创文章,未经博主允许不得转载。

EularProject 32: 数字1-9排列构成乘法等式

标签:数字1-9

原文地址:http://blog.csdn.net/zhangzhengyi03539/article/details/47061087

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