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,32 +1,32 @@
---
id: 5900f4cd1000cf542c50ffe0
title: 问题353危险的月亮
title: 'Problem 353: Risky moon'
challengeType: 5
videoUrl: ''
forumTopicId: 302013
dashedName: problem-353-risky-moon
---
# --description--
月球可以由球体Cr描述其中心0,0,0和半径r。
A moon could be described by the sphere C(r) with centre (0,0,0) and radius r.
月球上有Cr表面点上的整数坐标。 0,0r处的站称为北极站0,0-r)处的站称为南极站。
There are stations on the moon at the points on the surface of C(r) with integer coordinates. The station at (0,0,r) is called North Pole station, the station at (0,0,-r) is called South Pole station.
所有车站都通过车站的大弧上最短的道路相互连接。两个站之间的旅程是有风险的。如果d是两个站之间的道路长度d /πr2是旅程风险的度量让我们称之为道路风险。如果旅程包括两个以上的车站则旅程的风险是使用过的道路的风险总和。
All stations are connected with each other via the shortest road on the great arc through the stations. A journey between two stations is risky. If d is the length of the road between two stations, (d/(π r))2 is a measure for the risk of the journey (let us call it the risk of the road). If the journey includes more than two stations, the risk of the journey is the sum of risks of the used roads.
从北极站到南极站的直接旅程长度为πr风险为1.从北极站到南极站的路程0r0长度相同但风险较小½πr/πr2+1 /2πr/πr2 = 0.5
A direct journey from the North Pole station to the South Pole station has the length πr and risk 1. The journey from the North Pole station to the South Pole station via (0,r,0) has the same length, but a smaller risk: (½πr/(πr))2+(½πr/(πr))2=0.5.
从Cr的北极站到南极站的旅程的最小风险是Mr
The minimal risk of a journey from the North Pole station to the South Pole station on C(r) is M(r).
给出M7= 0.1784943998四舍五入到小数点后面的10位数。
You are given that M(7)=0.1784943998 rounded to 10 digits behind the decimal point.
找到ΣM2n-11≤n≤15
Find ∑M(2n-1) for 1≤n≤15.
将答案四舍五入到小数点后面的10位数形式为a.bcdefghijk
Give your answer rounded to 10 digits behind the decimal point in the form a.bcdefghijk.
# --hints--
`euler353()`应返回1.2759860331
`euler353()` should return 1.2759860331.
```js
assert.strictEqual(euler353(), 1.2759860331);