結果

問題 No.144 エラトステネスのざる
ユーザー htensaihtensai
提出日時 2020-01-23 12:18:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 4,675 ms
コンパイル使用メモリ 73,484 KB
実行使用メモリ 45,308 KB
最終ジャッジ日時 2024-07-19 02:23:22
合計ジャッジ時間 7,068 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,188 KB
testcase_01 AC 116 ms
41,168 KB
testcase_02 AC 121 ms
40,596 KB
testcase_03 AC 135 ms
41,656 KB
testcase_04 AC 120 ms
40,656 KB
testcase_05 AC 107 ms
40,144 KB
testcase_06 AC 124 ms
41,296 KB
testcase_07 AC 128 ms
41,356 KB
testcase_08 AC 116 ms
41,300 KB
testcase_09 AC 111 ms
40,116 KB
testcase_10 AC 122 ms
41,060 KB
testcase_11 AC 133 ms
41,544 KB
testcase_12 AC 126 ms
40,472 KB
testcase_13 AC 185 ms
45,308 KB
testcase_14 AC 174 ms
45,172 KB
testcase_15 AC 175 ms
45,248 KB
testcase_16 AC 175 ms
45,240 KB
testcase_17 AC 179 ms
45,300 KB
testcase_18 AC 186 ms
45,136 KB
testcase_19 AC 161 ms
44,880 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();
        int[] arr = new int[n + 1];
        double ans = 0;
        for (int i = 2; i <= n; i++) {
            for (int j = 2; j * i <= n; j++) {
                arr[i * j]++;
            }
            if (arr[i] == 0) {
                ans++;
            } else {
                ans += Math.pow(1 - p, arr[i]);
            }
        }
        System.out.println(ans);
    }
}
0