Problem 51 » 履歴 » バージョン 1
  Noppi, 2024/01/17 13:06 
  
| 1 | 1 | Noppi | [ホーム](https://redmine.noppi.jp) - [[Wiki|Project Euler]]  | 
|---|---|---|---|
| 2 | # [[Problem 51]]  | 
||
| 3 | |||
| 4 | ## Prime Digit Replacements  | 
||
| 5 | By replacing the 1<sup>st</sup> digit of the 2-digit number *3, it turns out that six of the nine possible values: 13, 23, 43, 53, 73, and 83, are all prime.  | 
||
| 6 | |||
| 7 | By replacing the 3<sup>rd</sup> and 4<sup>th</sup> digits of 56**3 with the same digit, this 5-digit number is the first example having seven primes among the ten generated numbers, yielding the family: 56003, 56113, 56333, 56443, 56663, 56773, and 56993. Consequently 56003, being the first member of this family, is the smallest prime with this property.  | 
||
| 8 | |||
| 9 | Find the smallest prime which, by replacing part of the number (not necessarily adjacent digits) with the same digit, is part of an eight prime value family.  | 
||
| 10 | |||
| 11 | ## 素数の桁置換  | 
||
| 12 | *3の第1桁を置き換えることで, 13, 23, 43, 53, 73, 83という6つの素数が得られる.  | 
||
| 13 | |||
| 14 | 56**3の第3桁と第4桁を同じ数で置き換えることを考えよう. この5桁の数は7つの素数をもつ最初の例である: 56003, 56113, 56333, 56443, 56663, 56773, 56993. よって, この族の最初の数である56003は, このような性質を持つ最小の素数である.  | 
||
| 15 | |||
| 16 | 桁を同じ数で置き換えることで8つの素数が得られる最小の素数を求めよ. (注:連続した桁でなくても良い)  | 
||
| 17 | |||
| 18 | ```scheme  | 
||
| 19 | ```  |