A1285.[COCI-2006_2007-contest1]#3 HERMAN
普及/提高-
通过率:0%
时间限制:1.00s
内存限制:128MB
题目描述
The 19th century German mathematician Hermann Minkowski investigated a non-Euclidian geometry, called the taxicab geometry. In taxicab geometry the distance between two points T1(x1,
y1) and T2(x2, y2) is defined as:
D(T1,T2) = |x1 - x2| + |y1 - y2|
All other definitions are the same as in Euclidian geometry, including that of a circle:
A circle is the set of all points in a plane at a fixed distance (the radius) from a fixed point (the centre of the circle).
We are interested in the difference of the areas of two circles with radius R, one of which is in normal (Euclidian) geometry, and the other in taxicab geometry. The burden of solving this difficult problem has fallen onto you.
输入格式
The first and only line of input will contain the radius R, an integer smaller than or equal to 1000
0.
输出格式
On the first line you should output the area of a circle with radius R in normal (Euclidian) geometry.
On the second line you should output the area of a circle with radius R in taxicab geometry.
输入输出样例
输入#1
1
输出#1
3.141593 2.000000
输入#2
21
输出#2
1385.442360 882.000000
输入#3
42
输出#3
5541.769441 3528.000000
说明/提示
Outputs within ±0.0001 of the official solution will be accepted.