PivotOJ

Cow Camp

시간 제한: 2000ms메모리 제한: 1024MB출처: USACO 2022 February GoldBOJ 24615

문제

To qualify for cow camp, Bessie needs to earn a good score on the last problem of the USACOW Open contest. This problem has TT distinct test cases (2T1032\le T\le 10^3) weighted equally, with the first test case being the sample case. Her final score will equal the number of test cases that her last submission passes.

Unfortunately, Bessie is way too tired to think about the problem, but since the answer to each test case is either "yes" or "no," she has a plan! Precisely, she decides to repeatedly submit the following nondeterministic solution:

if input == sample_input:
  print sample_output
else:
  print "yes" or "no" each with probability 1/2, independently for each test case

Note that for all test cases besides the sample, this program may produce a different output when resubmitted, so the number of test cases that it passes will vary.

Bessie knows that she cannot submit more than KK (1K1091\le K\le 10^9) times in total because then she will certainly be disqualified. What is the maximum possible expected value of Bessie's final score, assuming that she follows the optimal strategy?

입력

The only line of input contains two space-separated integers TT and K.K.

출력

The answer as a decimal that differs by at most 10610^{-6} absolute or relative error from the actual answer.

예제

예제 1

입력
2 3
출력
1.875

예제 2

입력
4 2
출력
2.8750000000000000000
코드를 제출하려면 로그인하세요.