Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-383-divisibility-comparison-between-factorials.md

43 lines
714 B
Markdown
Raw Normal View History

---
id: 5900f4ed1000cf542c50ffff
title: 问题383阶乘之间的可比性比较
challengeType: 5
videoUrl: ''
dashedName: problem-383-divisibility-comparison-between-factorials
---
# --description--
设f5n是最大整数x其中5x除以n。例如f5625000= 7。
令T5n为满足f52·i-1<2·f5i且1≤i≤n的整数i。可以证实T5103= 68并且T5109= 2408210。
找到T51018
# --hints--
`euler383()`应该返回22173624649806。
```js
assert.strictEqual(euler383(), 22173624649806);
```
# --seed--
## --seed-contents--
```js
function euler383() {
return true;
}
euler383();
```
# --solutions--
```js
// solution required
```