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

26 lines
507 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
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--