시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 (추가 시간 없음) 1024 MB21616711478.621%

문제

Due to COVID-19, social distancing is applied in our daily life to prevent the spread of the disease. It changes our living styles a lot, especially the way of traveling. Now, many carriers cancel non-reserved seats and introduce seating rules to ensure that the distance between any two passengers is long enough.

On your trip to the 2022 ICPC World Finals, you take a flight. The airplane provides n reserved seats to n passengers. The passengers must queue up first; then they board the airplane one by one. You are the last passenger to board, since you are at the end of the queue. Unfortunately, the first passenger is drunk. The drunk passenger randomly goes to another passenger’s seat and then sits there. You may assume the following.

  1. The drunk passenger never takes their own seat.
  2. The probability of any other seat taken by the drunk passenger is uniform.

Luckily, all the other passengers are not drunk. However, they don’t want to move any passenger from a taken seat. If a passenger’s seat has been taken by another passenger when boarding, the passenger would randomly take a vacant seat with equal probability. Otherwise, the passengers just take their own seats.

Please write a program to compute the probability that your seat is taken by another passenger.

입력

The input contains only one positive integer n.

출력

Output the probability that your seat is taken by another passenger. It is acceptable if the difference between your output and the answer is less than 10-6.'

제한

  • 1 < n ≤ 300

예제 입력 1

2

예제 출력 1

1

예제 입력 2

3

예제 출력 2

0.75

예제 입력 3

4

예제 출력 3

0.6666666666666666666666667

노트

The problem statement is a fiction.