freeCodeCamp/curriculum/challenges/portuguese/08-coding-interview-prep/project-euler/problem-433-steps-in-euclid...

1.2 KiB

id challengeType title videoUrl localeTitle
5900f51d1000cf542c51002f 5 Problem 433: Steps in Euclid"s algorithm Problema 433: Etapas no algoritmo de Euclides

Description

Seja E (x0, y0) o número de passos necessários para determinar o maior divisor comum de x0 e y0 com o algoritmo de Euclides. Mais formalmente: x1 = y0, y1 = x0 mod y0xn = yn-1, yn = xn-1 mod yn-1 E (x0, y0) é o menor n tal que yn = 0.

Nós temos E (1,1) = 1, E (10,6) = 3 e E (6,10) = 4.

Defina S (N) como a soma de E (x, y) para 1 ≤ x, y ≤ N. Temos S (1) = 1, S (10) = 221 e S (100) = 39826.

Encontre S (5 · 106).

Instructions

Tests

tests:
  - text: <code>euler433()</code> deve retornar 326624372659664.
    testString: 'assert.strictEqual(euler433(), 326624372659664, "<code>euler433()</code> should return 326624372659664.");'

Challenge Seed

function euler433() {
  // Good luck!
  return true;
}

euler433();

Solution

// solution required