chore(i8n,learn): processed translations

This commit is contained in:
Crowdin Bot
2021-02-06 04:42:36 +00:00
committed by Mrugesh Mohapatra
parent 15047f2d90
commit e5c44a3ae5
3274 changed files with 172122 additions and 14164 deletions

View File

@ -1,24 +1,24 @@
---
id: 5900f4d41000cf542c50ffe7
title: 问题360可怕的球体
title: 'Problem 360: Scary Sphere'
challengeType: 5
videoUrl: ''
forumTopicId: 302021
dashedName: problem-360-scary-sphere
---
# --description--
给定三维空间中的两个点(x1y1z1)和(x2y2z2),这些点之间的曼哈顿距离定义为| x1-x2 | + | y1-y2 | + | z1-z2 |。
Given two points (x1,y1,z1) and (x2,y2,z2) in three dimensional space, the Manhattan distance between those points is defined as |x1-x2|+|y1-y2|+|z1-z2|.
令Cr为半径为r且在原点O0,0,0中心的球体。设Ir是Cr表面上具有整数坐标的所有点的集合。设Sr是Ir的所有元素与原点O的曼哈顿距离之和。
Let C(r) be a sphere with radius r and center in the origin O(0,0,0). Let I(r) be the set of all points with integer coordinates on the surface of C(r). Let S(r) be the sum of the Manhattan distances of all elements of I(r) to the origin O.
例如S45= 34518
E.g. S(45)=34518.
找到S1010)。
Find S(1010).
# --hints--
`euler360()`应该返回878825614395267100
`euler360()` should return 878825614395267100.
```js
assert.strictEqual(euler360(), 878825614395267100);