2018-10-10 18:03:03 -04:00
---
id: 5900f42b1000cf542c50ff3d
challengeType: 5
title: 'Problem 190: Maximising a weighted product'
2019-08-28 16:26:13 +03:00
forumTopicId: 301828
2018-10-10 18:03:03 -04:00
localeTitle: 'Проблема 190: Максимизация взвешенного продукта'
---
## Description
2019-08-28 16:26:13 +03:00
< section id = 'description' >
Пусть Sm = (x1, x2, ..., xm) - m-набор положительных вещественных чисел с x1 + x2 + ... + xm = m, для которого Pm = x1 * x22 * ... * xmm максимизируется , < p > Например, можно проверить, что [P10] = 4112 ([] - функция целочисленной части). </ p >< p > Найти Σ [Pm] для 2 ≤ m ≤ 15. </ p >
< / section >
2018-10-10 18:03:03 -04:00
## Instructions
2019-08-28 16:26:13 +03:00
< section id = 'instructions' >
2018-10-10 18:03:03 -04:00
< / section >
## Tests
< section id = 'tests' >
```yml
tests:
2019-08-28 16:26:13 +03:00
- text: < code > euler190()</ code > should return 371048281.
testString: assert.strictEqual(euler190(), 371048281);
2018-10-10 18:03:03 -04:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'js-seed' >
```js
function euler190() {
// Good luck!
return true;
}
euler190();
```
< / div >
< / section >
## Solution
< section id = 'solution' >
```js
// solution required
```
2019-08-28 16:26:13 +03:00
2018-10-10 18:03:03 -04:00
< / section >