A - Water Pressure Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 100100

問題文

水圧は水深のみに依存し、水深 xx [m] の場所では x100\dfrac{x}{100} [MPa] になるものとします。

水深 DD [m] の場所の水圧は何 [MPa] ですか?

制約

  • 1D100001 \leq D \leq 10000
  • DD は整数である。

入力

入力は以下の形式で標準入力から与えられる。

DD

出力

答えを出力せよ。想定解答との絶対誤差または相対誤差が 10310^{-3} 以下であれば正解として扱われる。


入力例 1Copy

Copy
1000

出力例 1Copy

Copy
10

水深 10001000 [m] の場所の水圧は 1010 [MPa] です。10.09.999999 などを出力しても正解となります。


入力例 2Copy

Copy
50

出力例 2Copy

Copy
0.5

入力例 3Copy

Copy
3141

出力例 3Copy

Copy
31.41

Score : 100100 points

Problem Statement

Let us assume that water pressure depends only on depth and is x100\dfrac{x}{100} megapascal at a depth of xx meters.

What is the water pressure in megapascals at a depth of DD meters?

Constraints

  • 1D100001 \leq D \leq 10000
  • DD is an integer.

Input

Input is given from Standard Input in the following format:

DD

Output

Print the answer. Your output will be considered correct when its absolute or relative error from our answer is at most 10310^{-3}.


Sample Input 1Copy

Copy
1000

Sample Output 1Copy

Copy
10

The water pressure at a depth of 10001000 meters is 1010 megapascal. Outputs such as 10.0 and 9.999999 would also be accepted.


Sample Input 2Copy

Copy
50

Sample Output 2Copy

Copy
0.5

Sample Input 3Copy

Copy
3141

Sample Output 3Copy

Copy
31.41


2025-04-03 (Thu)
07:33:03 +00:00