freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-365-a-huge-binomial...

26 lines
507 B
Markdown
Raw Normal View History

---
id: 5900f4da1000cf542c50ffec
title: 问题365巨大的二项式系数
challengeType: 5
videoUrl: ''
---
# --description--
二项式系数C1018,109是具有超过90亿9×109个数字的数字。
令Mnkm表示二项式系数Cnk模m。
计算ΣM1018,109p *q* r为1000 <p <q <r <5000和pqr prime。
# --hints--
`euler365()`应该返回162619462356610300。
```js
assert.strictEqual(euler365(), 162619462356610300);
```
# --solutions--