chore(i18n,learn): processed translations (#44851)
This commit is contained in:
@ -0,0 +1,40 @@
|
||||
---
|
||||
id: 5900f44b1000cf542c50ff5d
|
||||
title: '問題 222: 球を詰める'
|
||||
challengeType: 5
|
||||
forumTopicId: 301865
|
||||
dashedName: problem-222-sphere-packing
|
||||
---
|
||||
|
||||
# --description--
|
||||
|
||||
内半径が 50 mm のパイプの中に半径 30 mm, 31 mm, ..., 50 mm の球を 21 個の詰める場合、これらで完全に詰めることができるパイプの最短の長さを求めなさい。
|
||||
|
||||
回答は、マイクロメートル (${10}^{-6}$ m) 単位で最も近い整数に四捨五入すること。
|
||||
|
||||
# --hints--
|
||||
|
||||
`spherePacking()` は `1590933` を返す必要があります。
|
||||
|
||||
```js
|
||||
assert.strictEqual(spherePacking(), 1590933);
|
||||
```
|
||||
|
||||
# --seed--
|
||||
|
||||
## --seed-contents--
|
||||
|
||||
```js
|
||||
function spherePacking() {
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
spherePacking();
|
||||
```
|
||||
|
||||
# --solutions--
|
||||
|
||||
```js
|
||||
// solution required
|
||||
```
|
Reference in New Issue
Block a user