結果

問題 No.144 エラトステネスのざる
ユーザー kou6839kou6839
提出日時 2015-06-26 19:05:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 2,321 ms
コンパイル使用メモリ 73,976 KB
実行使用メモリ 45,276 KB
最終ジャッジ日時 2024-07-07 17:41:47
合計ジャッジ時間 5,336 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,456 KB
testcase_01 AC 98 ms
40,352 KB
testcase_02 AC 123 ms
41,640 KB
testcase_03 AC 124 ms
41,236 KB
testcase_04 AC 120 ms
41,516 KB
testcase_05 AC 98 ms
40,548 KB
testcase_06 AC 111 ms
41,172 KB
testcase_07 AC 101 ms
40,484 KB
testcase_08 AC 126 ms
41,408 KB
testcase_09 AC 118 ms
41,376 KB
testcase_10 AC 106 ms
40,676 KB
testcase_11 AC 110 ms
40,052 KB
testcase_12 AC 115 ms
41,392 KB
testcase_13 AC 170 ms
45,276 KB
testcase_14 AC 161 ms
45,188 KB
testcase_15 AC 160 ms
44,908 KB
testcase_16 AC 171 ms
44,984 KB
testcase_17 AC 165 ms
44,820 KB
testcase_18 AC 175 ms
45,232 KB
testcase_19 AC 163 ms
45,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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[] d = new int[N+10];
		for(int i=2;i<=N;i++){
			for(int j=i*2;j<=N;j+=i){
				d[j]++;
			}
		}
		double e = 0;
		for(int i=2;i<=N;i++){
			if(d[i]==0) e+=1;
			else e+=Math.pow(1-p,d[i]);
		}
		System.out.println(e);
	}
}
0