{"raw_statement":[{"iden":"problem statement","content":"#nck { width: 30px; height: auto; }There are $N$ balls and $N+1$ holes in a line. Balls are numbered $1$ through $N$ from left to right. Holes are numbered $1$ through $N+1$ from left to right. The $i$\\-th ball is located between the $i$\\-th hole and $(i+1)$\\-th hole. We denote the distance between neighboring items (one ball and one hole) from left to right as $d_i$ ($1 \\leq i \\leq 2 \\times N$). You are given two parameters $d_1$ and $x$. $d_i - d_{i-1}$ is equal to $x$ for all $i$ ($2 \\leq i \\leq 2 \\times N$).\nWe want to push all $N$ balls into holes one by one. When a ball rolls over a hole, the ball will drop into the hole if there is no ball in the hole yet. Otherwise, the ball will pass this hole and continue to roll. (In any scenario considered in this problem, balls will never collide.)\nIn each step, we will choose one of the remaining balls uniformly at random and then choose a direction (either left or right) uniformly at random and push the ball in this direction. Please calculate the expected total distance rolled by all balls during this process.\nFor example, when $N = 3$, $d_1 = 1$, and $x = 1$, the following is one possible scenario:\n\n![image](https://atcoder.jp/img/agc007/c9264131788434ac062635a675a785e3.jpg)\n\n*   first step: push the ball numbered $2$ to its left, it will drop into the hole numbered $2$. The distance rolled is $3$.\n*   second step: push the ball numbered $1$ to its right, it will pass the hole numbered $2$ and drop into the hole numbered $3$. The distance rolled is $9$.\n*   third step: push the ball numbered $3$ to its right, it will drop into the hole numbered $4$. The distance rolled is $6$.\n\nSo the total distance in this scenario is $18$.\nNote that in all scenarios every ball will drop into some hole and there will be a hole containing no ball in the end."},{"iden":"constraints","content":"*   $1 \\leq N \\leq 200,000$\n*   $1 \\leq d_1 \\leq 100$\n*   $0 \\leq x \\leq 100$\n*   All input values are integers."},{"iden":"input","content":"The input is given from Standard Input in the following format:\n\n$N$ $d_1$ $x$"},{"iden":"sample input 1","content":"1 3 3"},{"iden":"sample output 1","content":"4.500000000000000\n\nThe distance between the only ball and the left hole is $3$ and distance between the only ball and the right hole is $6$. There are only two scenarios (i.e. push left and push right). The only ball will roll $3$ and $6$ unit distance, respectively. So the answer for this example is $(3+6)/2 = 4.5$."},{"iden":"sample input 2","content":"2 1 0"},{"iden":"sample output 2","content":"2.500000000000000"},{"iden":"sample input 3","content":"1000 100 100"},{"iden":"sample output 3","content":"649620280.957660079002380"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}