freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-474-last-digits-of-...

43 lines
812 B
Markdown
Raw Normal View History

---
id: 5900f5471000cf542c510059
title: 问题474除数的最后数字
challengeType: 5
videoUrl: ''
dashedName: problem-474-last-digits-of-divisors
---
# --description--
对于正整数n和数字d我们将Fnd定义为n的除数的数其最后的数字等于d。例如F84,4= 3.在84的除数中1,2,3,4,6,7,12,14,21,28,42,84其中三个4,14 84有最后一位数字4。
我们还可以验证F1212= 11和F50123= 17888。
找到F10665432modulo1016 + 61
# --hints--
`euler474()`应该返回9690646731515010。
```js
assert.strictEqual(euler474(), 9690646731515010);
```
# --seed--
## --seed-contents--
```js
function euler474() {
return true;
}
euler474();
```
# --solutions--
```js
// solution required
```