freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-386-maximum-length-...

47 lines
819 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
id: 5900f4ef1000cf542c510001
title: 问题386反链的最大长度
challengeType: 5
videoUrl: ''
dashedName: problem-386-maximum-length-of-an-antichain
---
# --description--
令n为整数Sn为n的因子集。
如果A仅包含一个元素或者如果A的元素中没有一个除以A的任何其他元素则Sn的子集A被称为Sn的反共。
例如S30= {1,2,3,5,6,10,15,30} {2,5,6}不是S30的反链。 {2,3,5}是S30的反链。
设Nn为Sn的反链的最大长度。
找ΣNn为1≤n≤108
# --hints--
`euler386()`应该返回528755790。
```js
assert.strictEqual(euler386(), 528755790);
```
# --seed--
## --seed-contents--
```js
function euler386() {
return true;
}
euler386();
```
# --solutions--
```js
// solution required
```