結果

問題 No.144 エラトステネスのざる
ユーザー 37zigen37zigen
提出日時 2016-03-22 01:50:35
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 684 bytes
コンパイル時間 2,158 ms
コンパイル使用メモリ 77,812 KB
実行使用メモリ 65,692 KB
最終ジャッジ日時 2024-10-01 12:37:17
合計ジャッジ時間 8,079 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
61,252 KB
testcase_01 AC 132 ms
54,224 KB
testcase_02 AC 142 ms
54,180 KB
testcase_03 AC 134 ms
54,340 KB
testcase_04 AC 127 ms
53,976 KB
testcase_05 AC 133 ms
54,112 KB
testcase_06 AC 142 ms
54,192 KB
testcase_07 AC 143 ms
54,232 KB
testcase_08 AC 146 ms
54,272 KB
testcase_09 AC 139 ms
54,196 KB
testcase_10 AC 142 ms
54,200 KB
testcase_11 AC 119 ms
53,200 KB
testcase_12 AC 138 ms
54,308 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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;j<i;j++){
				if(i%j==0)a[i]++;
			}
		}
		return a;
	}
}
0