chore(i18n,learn): processed translations (#44851)

This commit is contained in:
camperbot
2022-01-21 01:00:18 +05:30
committed by GitHub
parent f866718a3d
commit 5c868af2b8
1696 changed files with 159426 additions and 69 deletions

View File

@ -0,0 +1,38 @@
---
id: 5900f4661000cf542c50ff78
title: '問題 250: 250250'
challengeType: 5
forumTopicId: 301898
dashedName: problem-250-250250
---
# --description--
$\\{11, 22, 33, \ldots, {250250}^{250250}\\}$ の部分集合のうち、空ではなく、要素の和が 250 で割り切れるものはいくつありますか。 回答として下位 16 桁を入力すること。
# --hints--
`twoHundredFifty()``1425480602091519` を返す必要があります。
```js
assert.strictEqual(twoHundredFifty(), 1425480602091519);
```
# --seed--
## --seed-contents--
```js
function twoHundredFifty() {
return true;
}
twoHundredFifty();
```
# --solutions--
```js
// solution required
```