結果

問題 No.144 エラトステネスのざる
ユーザー tsunabittsunabit
提出日時 2020-03-06 18:34:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 4,047 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 45,640 KB
最終ジャッジ日時 2024-10-14 02:57:58
合計ジャッジ時間 8,474 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
41,592 KB
testcase_01 AC 144 ms
41,524 KB
testcase_02 AC 155 ms
41,592 KB
testcase_03 AC 147 ms
41,548 KB
testcase_04 AC 142 ms
41,428 KB
testcase_05 AC 145 ms
41,456 KB
testcase_06 AC 145 ms
41,532 KB
testcase_07 AC 144 ms
41,464 KB
testcase_08 AC 148 ms
41,528 KB
testcase_09 AC 144 ms
41,480 KB
testcase_10 AC 149 ms
41,464 KB
testcase_11 AC 147 ms
41,720 KB
testcase_12 AC 143 ms
41,540 KB
testcase_13 AC 206 ms
45,556 KB
testcase_14 AC 204 ms
45,640 KB
testcase_15 AC 212 ms
45,504 KB
testcase_16 AC 210 ms
45,352 KB
testcase_17 AC 204 ms
45,548 KB
testcase_18 AC 207 ms
45,428 KB
testcase_19 AC 185 ms
45,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

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