package yukicoder242; import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc=new Scanner(System.in); int n=sc.nextInt(); double p=sc.nextDouble(); int[] a=theNumberOfDivisors(n);//a[n]=nの約数の個数 // for(int i=0;i<=n;i++){ // System.out.println("a["+i+"]="+a[i]); // } double expectedValue=0; for(int i=2;i<=n;i++){ expectedValue+=Math.pow(1-p, a[i]); } System.out.println(expectedValue); } public static int[] theNumberOfDivisors(int n){//1と自分自身を除く約数の個数 int[] a=new int[n+1]; for(int i=2;i<=n;i++){ for(int j=2*i;j<=n;j+=i){ a[j]++; } } return a; } }