Pandigital products
Contents
Description
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.
Solution
The Formula just like: $a*b = c$
Two Situations:
a
has 1 digits,b
has 4 digits andc
has 4 digitsa
has 2 digits,b
has 3 digits andc
has 4 digits
Brute force calculation
|
|
Summary
这个题目纯暴力求解 不过通过限制数值范围
得到所有的符合要求的泛位数
,记得提示中的需要过滤掉重复
数据即可