Files
2022-02-28 20:22:39 +01:00

693 B

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
5900f44b1000cf542c50ff5d Problema 222: Imballaggio di una sfera 5 301865 problem-222-sphere-packing

--description--

Qual è la lunghezza del tubo più corto, di raggio interno 50mm, che può contenere completamente 21 sfere di raggio 30mm, 31mm, ..., 50mm?

Dai la tua risposta in micrometri ({10}^{-6} m) arrotondata al numero intero più vicino.

--hints--

spherePacking() dovrebbe restituire 1590933.

assert.strictEqual(spherePacking(), 1590933);

--seed--

--seed-contents--

function spherePacking() {

  return true;
}

spherePacking();

--solutions--

// solution required