Files
2022-04-11 19:34:39 +05:30

46 lines
1.0 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 5900f4861000cf542c50ff99
title: 'Завдання 282: Функція Акермана'
challengeType: 5
forumTopicId: 301933
dashedName: problem-282-the-ackermann-function
---
# --description--
Для невід'ємних цілих $m$, $n$ функція Акермана $A(m, n)$ визначається таким чином:
$$A(m, n) = \begin{cases} n + 1 & \text{if $m = 0$} \\\\
A(m - 1, 1) & \text{if $m > 0$ and $n = 0$} \\\\ A(m - 1, A(m, n - 1)) & \text{if $m > 0$ and $n > 0$} \end{cases}$$
Наприклад, $A(1, 0) = 2$, $A(2, 2) = 7$ and $A(3, 4) = 125$.
Знайдіть $\displaystyle\sum_{n = 0}^6 A(n, n)$ і дайте відповіді мод ${14}^8$.
# --hints--
`ackermanFunction()` має повертати `1098988351`.
```js
assert.strictEqual(ackermanFunction(), 1098988351);
```
# --seed--
## --seed-contents--
```js
function ackermanFunction() {
return true;
}
ackermanFunction();
```
# --solutions--
```js
// solution required
```