Files

41 lines
824 B
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: 5900f44b1000cf542c50ff5d
title: 'Проблема 222: задача про пакування'
challengeType: 5
forumTopicId: 301865
dashedName: problem-222-sphere-packing
---
# --description--
Яка довжина найкоротшої труби з внутрішнім радіусом 50 мм, яка вміщує 21 кулю радіусом 30 мм, 31 мм, ..., 50 мм?
Дайте відповідь у мікрометрах (${10}^{-6}$ m), заокруглену до найближчого цілого числа.
# --hints--
`spherePacking()` має повернути `1590933`.
```js
assert.strictEqual(spherePacking(), 1590933);
```
# --seed--
## --seed-contents--
```js
function spherePacking() {
return true;
}
spherePacking();
```
# --solutions--
```js
// solution required
```