You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
180 B
C++

//http://blog.miskcoo.com/2015/04/bzoj-4001
#include <cstdio>
int main()
{
int n;
scanf("%d", &n);
printf("%.9lf", 1.0 * n * (n + 1) / 2 / (n * 2 - 1));
return 0;
}