結果

問題 No.144 エラトステネスのざる
ユーザー magurogumamaguroguma
提出日時 2017-08-22 13:44:54
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 501 bytes
コンパイル時間 3,501 ms
コンパイル使用メモリ 74,960 KB
実行使用メモリ 61,724 KB
最終ジャッジ日時 2024-10-15 04:21:15
合計ジャッジ時間 9,078 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
46,704 KB
testcase_01 AC 133 ms
41,104 KB
testcase_02 AC 129 ms
41,504 KB
testcase_03 AC 131 ms
41,132 KB
testcase_04 AC 130 ms
41,048 KB
testcase_05 AC 131 ms
40,996 KB
testcase_06 AC 132 ms
40,948 KB
testcase_07 AC 129 ms
41,308 KB
testcase_08 AC 130 ms
41,304 KB
testcase_09 AC 128 ms
41,256 KB
testcase_10 AC 190 ms
40,976 KB
testcase_11 AC 133 ms
41,192 KB
testcase_12 AC 130 ms
41,236 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class yuki144 {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		String[] strs = scanner.nextLine().split(" ", 0);
		int N = Integer.parseInt(strs[0]);
		double p = Double.parseDouble(strs[1]);

		double ans = 0.0;
		for(int i=2; i<=N; i++){
			int j = 2;
			int dNum = 0;
			while(j*j<=i){
				if(i%j==0){
					dNum += j*j!=i ? 2 : 1;
				}
				j += 1;
			}
			ans += Math.pow(1-p, dNum);
		}
		System.out.println(ans);
	}

}
0