結果

問題 No.144 エラトステネスのざる
ユーザー 37zigen37zigen
提出日時 2016-03-22 02:04:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 2,127 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 56,756 KB
最終ジャッジ日時 2024-10-01 12:38:39
合計ジャッジ時間 6,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
54,284 KB
testcase_01 AC 142 ms
54,064 KB
testcase_02 AC 143 ms
54,224 KB
testcase_03 AC 147 ms
53,924 KB
testcase_04 AC 150 ms
56,172 KB
testcase_05 AC 142 ms
54,280 KB
testcase_06 AC 137 ms
54,464 KB
testcase_07 AC 131 ms
54,296 KB
testcase_08 AC 130 ms
54,404 KB
testcase_09 AC 134 ms
54,072 KB
testcase_10 AC 132 ms
54,340 KB
testcase_11 AC 133 ms
41,920 KB
testcase_12 AC 137 ms
41,392 KB
testcase_13 AC 205 ms
45,528 KB
testcase_14 AC 204 ms
45,572 KB
testcase_15 AC 206 ms
45,728 KB
testcase_16 AC 194 ms
56,708 KB
testcase_17 AC 196 ms
56,636 KB
testcase_18 AC 203 ms
56,504 KB
testcase_19 AC 194 ms
56,756 KB
権限があれば一括ダウンロードができます

ソースコード

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