Problem 52 » 履歴 » バージョン 1
Noppi, 2024/01/18 08:40
1 | 1 | Noppi | [ホーム](https://redmine.noppi.jp) - [[Wiki|Project Euler]] |
---|---|---|---|
2 | # [[Problem 52]] |
||
3 | |||
4 | ## Permuted Multiples |
||
5 | It can be seen that the number, $125874$, and its double, $251748$, contain exactly the same digits, but in a different order. |
||
6 | |||
7 | Find the smallest positive integer, $x$, such that $2x$, $3x$, $4x$, $5x$, and $6x$, contain the same digits. |
||
8 | |||
9 | ## 置換倍数 |
||
10 | 125874を2倍すると251748となる. これは元の数125874と順番は違うが同じ数を含む. |
||
11 | |||
12 | 2x, 3x, 4x, 5x, 6x が x と同じ数を含むような最小の正整数 x を求めよ. |
||
13 | |||
14 | ```scheme |
||
15 | ``` |