結果

問題 No.144 エラトステネスのざる
ユーザー tentententen
提出日時 2020-10-14 12:00:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 2,178 ms
コンパイル使用メモリ 75,316 KB
実行使用メモリ 49,684 KB
最終ジャッジ日時 2024-07-20 19:03:16
合計ジャッジ時間 6,546 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,696 KB
testcase_01 AC 144 ms
41,628 KB
testcase_02 AC 143 ms
41,860 KB
testcase_03 AC 142 ms
41,652 KB
testcase_04 AC 142 ms
41,488 KB
testcase_05 AC 144 ms
41,680 KB
testcase_06 AC 145 ms
41,536 KB
testcase_07 AC 145 ms
41,536 KB
testcase_08 AC 147 ms
41,648 KB
testcase_09 AC 145 ms
41,524 KB
testcase_10 AC 150 ms
41,952 KB
testcase_11 AC 143 ms
41,484 KB
testcase_12 AC 133 ms
40,900 KB
testcase_13 AC 215 ms
49,572 KB
testcase_14 AC 208 ms
49,684 KB
testcase_15 AC 210 ms
49,376 KB
testcase_16 AC 214 ms
49,144 KB
testcase_17 AC 207 ms
48,884 KB
testcase_18 AC 223 ms
49,460 KB
testcase_19 AC 214 ms
49,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	double p = sc.nextDouble();
    	double[] primes = new double[n + 1];
    	Arrays.fill(primes, 1.0);
    	double ans = 0;
    	for (int i = 2; i <= n; i++) {
    	    ans += primes[i];
    	    for (int j = 2; j * i <= n; j++) {
    	        primes[i * j] *= (1 - p);
    	    }
    	}
    	System.out.print(ans);
	}
}
0