2021-06-15 00:49:18 -07:00
---
id: 5900f5361000cf542c510049
2021-11-29 08:32:04 -08:00
title: 'Problema 458: Permutações do projeto'
2021-06-15 00:49:18 -07:00
challengeType: 5
forumTopicId: 302132
dashedName: problem-458-permutations-of-project
---
# --description--
2021-11-29 08:32:04 -08:00
Considere o alfabeto $A$ feito das letras da palavra `project` : $A = \\{c, e, j, o, p, r, t\\}$.
2021-06-15 00:49:18 -07:00
2021-11-29 08:32:04 -08:00
Considere $T(n)$ como o número de strings de tamanho $n$ consistindo em letras de $A$ que não têm uma substring que seja uma das 5040 permutações de `project` .
2021-06-15 00:49:18 -07:00
2021-11-29 08:32:04 -08:00
$T(7) = 7^7 - 7! = 818.503$.
2021-06-15 00:49:18 -07:00
2021-11-29 08:32:04 -08:00
Encontre $T({10}^{12})$. Dê os últimos 9 algarismos da sua resposta.
2021-06-15 00:49:18 -07:00
# --hints--
2021-11-29 08:32:04 -08:00
`permutationsOfProject()` deve retornar `423341841` .
2021-06-15 00:49:18 -07:00
```js
2021-11-29 08:32:04 -08:00
assert.strictEqual(permutationsOfProject(), 423341841);
2021-06-15 00:49:18 -07:00
```
# --seed--
## --seed-contents--
```js
2021-11-29 08:32:04 -08:00
function permutationsOfProject() {
2021-06-15 00:49:18 -07:00
return true;
}
2021-11-29 08:32:04 -08:00
permutationsOfProject();
2021-06-15 00:49:18 -07:00
```
# --solutions--
```js
// solution required
```