chore(i18n,learn): processed translations (#45333)
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
---
|
||||
id: 5900f4f11000cf542c510002
|
||||
title: 'Problem 388: Distinct Lines'
|
||||
title: 'Problema 388: Linee Distinte'
|
||||
challengeType: 5
|
||||
forumTopicId: 302052
|
||||
dashedName: problem-388-distinct-lines
|
||||
@ -8,20 +8,20 @@ dashedName: problem-388-distinct-lines
|
||||
|
||||
# --description--
|
||||
|
||||
Consider all lattice points (a,b,c) with 0 ≤ a,b,c ≤ N.
|
||||
Considera tutti i punti del reticolo ($a$, $b$, $c$) con $0 ≤ a, b, c ≤ N$.
|
||||
|
||||
From the origin O(0,0,0) all lines are drawn to the other lattice points. Let D(N) be the number of distinct such lines.
|
||||
Dall'origine $O(0, 0, 0)$ tutte le linee sono disegnate verso gli altri punti del reticolo. Sia $D(N)$ il numero di linee distinte.
|
||||
|
||||
You are given that D(1 000 000) = 831909254469114121.
|
||||
Ti è dato che $D(1\\,000\\,000) = 831\\,909\\,254\\,469\\,114\\,121$.
|
||||
|
||||
Find D(1010). Give as your answer the first nine digits followed by the last nine digits.
|
||||
Trova $D({10}^{10})$. Dai come risposta le prime nove cifre seguite dalle ultime nove cifre.
|
||||
|
||||
# --hints--
|
||||
|
||||
`euler388()` should return 831907372805130000.
|
||||
`distinctLines()` should return `831907372805130000`.
|
||||
|
||||
```js
|
||||
assert.strictEqual(euler388(), 831907372805130000);
|
||||
assert.strictEqual(distinctLines(), 831907372805130000);
|
||||
```
|
||||
|
||||
# --seed--
|
||||
@ -29,12 +29,12 @@ assert.strictEqual(euler388(), 831907372805130000);
|
||||
## --seed-contents--
|
||||
|
||||
```js
|
||||
function euler388() {
|
||||
function distinctLines() {
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
euler388();
|
||||
distinctLines();
|
||||
```
|
||||
|
||||
# --solutions--
|
||||
|
Reference in New Issue
Block a user