結果

問題 No.144 エラトステネスのざる
ユーザー GrenacheGrenache
提出日時 2015-08-26 21:22:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 585 bytes
コンパイル時間 3,480 ms
コンパイル使用メモリ 75,196 KB
実行使用メモリ 49,712 KB
最終ジャッジ日時 2024-07-18 14:45:06
合計ジャッジ時間 6,580 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,664 KB
testcase_01 AC 132 ms
41,892 KB
testcase_02 AC 131 ms
41,896 KB
testcase_03 AC 126 ms
41,252 KB
testcase_04 AC 129 ms
41,840 KB
testcase_05 AC 113 ms
41,896 KB
testcase_06 AC 128 ms
42,084 KB
testcase_07 AC 115 ms
41,460 KB
testcase_08 AC 113 ms
41,880 KB
testcase_09 AC 131 ms
41,532 KB
testcase_10 AC 129 ms
41,408 KB
testcase_11 AC 133 ms
41,500 KB
testcase_12 AC 123 ms
41,972 KB
testcase_13 AC 172 ms
49,712 KB
testcase_14 AC 166 ms
48,800 KB
testcase_15 AC 168 ms
49,484 KB
testcase_16 AC 181 ms
49,620 KB
testcase_17 AC 179 ms
49,456 KB
testcase_18 AC 171 ms
49,576 KB
testcase_19 AC 177 ms
49,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;


public class Main_yukicoder144 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        double p = sc.nextDouble();

        double[] dp = new double[n];
        Arrays.fill(dp, 1.0);
        double ret = 0;
        for (int i = 2; i <= n; i++) {
        	for (int j = 2; i * j <= n; j++) {
        		dp[i * j - 1] *= (1.0 - p);
        	}
        	ret += dp[i - 1];
        }

        System.out.printf("%.7f\n", ret);
        
        sc.close();
    }
}
0