結果

問題 No.144 エラトステネスのざる
ユーザー 37zigen37zigen
提出日時 2016-11-25 00:44:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 511 bytes
コンパイル時間 3,479 ms
コンパイル使用メモリ 74,344 KB
実行使用メモリ 49,424 KB
最終ジャッジ日時 2024-11-27 10:51:51
合計ジャッジ時間 7,345 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,720 KB
testcase_01 AC 127 ms
41,376 KB
testcase_02 AC 135 ms
41,364 KB
testcase_03 AC 117 ms
40,112 KB
testcase_04 AC 110 ms
40,128 KB
testcase_05 AC 138 ms
41,236 KB
testcase_06 AC 124 ms
41,284 KB
testcase_07 AC 113 ms
40,312 KB
testcase_08 AC 120 ms
41,216 KB
testcase_09 AC 125 ms
41,380 KB
testcase_10 AC 126 ms
41,392 KB
testcase_11 AC 129 ms
41,504 KB
testcase_12 AC 126 ms
41,688 KB
testcase_13 AC 198 ms
49,136 KB
testcase_14 AC 192 ms
49,328 KB
testcase_15 AC 184 ms
49,056 KB
testcase_16 AC 172 ms
48,668 KB
testcase_17 AC 187 ms
48,848 KB
testcase_18 AC 190 ms
49,424 KB
testcase_19 AC 192 ms
49,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Q144 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		double p = sc.nextDouble();
		double[] pro = new double[n + 1];
		for (int i = 2; i <= n; ++i) {
			pro[i] = 1;
		}
		for (int i = 2; i <= n; ++i) {
			for (int j = 2 * i; j <= n; j += i) {
				pro[j] = pro[j] * (1 - p);
			}
		} 
		double ans = 0;
		for (int i = 2; i <= n; ++i) {
			ans += pro[i];
		}
		System.out.println(ans);

	}
}
0