2021-06-15 00:49:18 -07:00
---
id: 5900f4351000cf542c50ff47
title: >-
2022-03-01 00:52:39 +05:30
Problema 200: Trova il 200° sqube a prova di primo contenente la sotto-stringa contigua "200"
2021-06-15 00:49:18 -07:00
challengeType: 5
forumTopicId: 301840
dashedName: >-
problem-200-find-the-200th-prime-proof-sqube-containing-the-contiguous-sub-string-200
---
# --description--
2022-03-01 00:52:39 +05:30
Definiamo uno sqube come un numero nella forma ${p^2}{q^3}$, dove $p$ e $q$ sono primi distinti.
2021-06-15 00:49:18 -07:00
2022-03-01 00:52:39 +05:30
Ad esempio, $200 = {5^2}{2^3}$ o $120072949 = {{23}^2}{{61}^3}$.
2021-06-15 00:49:18 -07:00
2022-03-01 00:52:39 +05:30
I primi cinque sqube sono 72, 108, 200, 392 e 500.
2021-06-15 00:49:18 -07:00
2022-03-01 00:52:39 +05:30
È interessante notare che 200 è anche il primo numero per il quale non si può cambiare nessuna singola cifra ottenendo un primo; chiameremo tali numeri, "a prova di primo". Il prossimo sqube a prova di primo che contiene la sotto-stringa contigua `200` è 1992008.
2021-06-15 00:49:18 -07:00
2022-03-01 00:52:39 +05:30
Trova il 200mo sqube a prova di primo contenente la sotto-stringa contigua `200` .
2021-06-15 00:49:18 -07:00
# --hints--
2022-03-01 00:52:39 +05:30
`primeProofSqubeWithSubString()` dovrebbe restituire `229161792008` .
2021-06-15 00:49:18 -07:00
```js
2022-03-01 00:52:39 +05:30
assert.strictEqual(primeProofSqubeWithSubString(), 229161792008);
2021-06-15 00:49:18 -07:00
```
# --seed--
## --seed-contents--
```js
2022-03-01 00:52:39 +05:30
function primeProofSqubeWithSubString() {
2021-06-15 00:49:18 -07:00
return true;
}
2022-03-01 00:52:39 +05:30
primeProofSqubeWithSubString();
2021-06-15 00:49:18 -07:00
```
# --solutions--
```js
// solution required
```