Takahashi is Missing!

AtCoder
IDasaporo_e
Time2000ms
Memory256MB
Difficulty
Aoki is in search of Takahashi, who is missing in a one-dimentional world. Initially, the coordinate of Aoki is $0$, and the coordinate of Takahashi is known to be $x$, but his coordinate afterwards cannot be known to Aoki. Time is divided into turns. In each turn, Aoki and Takahashi take the following actions simultaneously: * Let the current coordinate of Aoki be $a$, then Aoki moves to a coordinate he selects from $a-1$, $a$ and $a+1$. * Let the current coordinate of Takahashi be $b$, then Takahashi moves to the coordinate $b-1$ with probability of $p$ percent, and moves to the coordinate $b+1$ with probability of $100-p$ percent. When the coordinates of Aoki and Takahashi coincide, Aoki can find Takahashi. When they pass by each other, Aoki cannot find Takahashi. Aoki wants to minimize the expected number of turns taken until he finds Takahashi. Find the minimum possible expected number of turns. ## Constraints * $1$ ≦ $x$ ≦ $1,000,000,000$ * $1$ ≦ $p$ ≦ $100$ * $x$ and $p$ are integers. ## Input The input is given from Standard Input in the following format: $x$ $p$ ## Partial Scores * In the test set worth $200$ points, $p=100$. * In the test set worth $300$ points, $x$ ≦ $10$. [samples]
Samples
Input #1
3
100
Output #1
2.0000000

Takahashi always moves by $-1$. Thus, by moving to the coordinate $1$ in the $1$\-st turn and staying at that position in the $2$\-nd turn, Aoki can find Takahashi in $2$ turns.
Input #2
6
40
Output #2
7.5000000
Input #3
101
80
Output #3
63.7500000
API Response (JSON)
{
  "problem": {
    "name": "Takahashi is Missing!",
    "description": {
      "content": "Aoki is in search of Takahashi, who is missing in a one-dimentional world. Initially, the coordinate of Aoki is $0$, and the coordinate of Takahashi is known to be $x$, but his coordinate afterwards c",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "asaporo_e"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "Aoki is in search of Takahashi, who is missing in a one-dimentional world. Initially, the coordinate of Aoki is $0$, and the coordinate of Takahashi is known to be $x$, but his coordinate afterwards c...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments