

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
水圧は水深のみに依存し、水深 [m] の場所では [MPa] になるものとします。
水深 [m] の場所の水圧は何 [MPa] ですか?
制約
- は整数である。
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを出力せよ。想定解答との絶対誤差または相対誤差が 以下であれば正解として扱われる。
入力例 1Copy
1000
出力例 1Copy
10
水深 [m] の場所の水圧は [MPa] です。10.0
や 9.999999
などを出力しても正解となります。
入力例 2Copy
50
出力例 2Copy
0.5
入力例 3Copy
3141
出力例 3Copy
31.41
Score : points
Problem Statement
Let us assume that water pressure depends only on depth and is megapascal at a depth of meters.
What is the water pressure in megapascals at a depth of meters?
Constraints
- is an integer.
Input
Input is given from Standard Input in the following format:
Output
Print the answer. Your output will be considered correct when its absolute or relative error from our answer is at most .
Sample Input 1Copy
1000
Sample Output 1Copy
10
The water pressure at a depth of meters is megapascal. Outputs such as 10.0
and 9.999999
would also be accepted.
Sample Input 2Copy
50
Sample Output 2Copy
0.5
Sample Input 3Copy
3141
Sample Output 3Copy
31.41