freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-350-constraining-the-least-greatest-and-the-greatest-least.md

49 lines
1.1 KiB
Markdown
Raw Normal View History

---
id: 5900f4cb1000cf542c50ffdd
title: 问题350约束最小和最小
challengeType: 5
videoUrl: ''
dashedName: problem-350-constraining-the-least-greatest-and-the-greatest-least
---
# --description--
大小为n的列表是n个自然数的序列。实例是2,4,62,6,410,6,15,611
列表的最大公约数或gcd是划分列表中所有条目的最大自然数。例子gcd2,6,4= 2gcd10,6,15,6= 1gcd11= 11。
列表的最小公倍数或lcm是列表的每个条目可分割的最小自然数。实例1cm2,6,4= 12,1cm10,6,15,6= 30和1cm11= 11。
设fGLN为大小为N的列表数gcd≥G且lcm≤L。例如
f10,100,1= 91.f10,100,2= 327.f10,100,3= 1135.f10,100,1000mod 1014 = 3286053。
找到f106,1012,1018mod 1014。
# --hints--
`euler350()`应该返回84664213。
```js
assert.strictEqual(euler350(), 84664213);
```
# --seed--
## --seed-contents--
```js
function euler350() {
return true;
}
euler350();
```
# --solutions--
```js
// solution required
```