結果

問題 No.144 エラトステネスのざる
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-17 13:23:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 2,244 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 60,736 KB
最終ジャッジ日時 2024-07-04 15:24:05
合計ジャッジ時間 6,928 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
54,344 KB
testcase_01 AC 139 ms
53,376 KB
testcase_02 AC 145 ms
53,856 KB
testcase_03 AC 145 ms
54,200 KB
testcase_04 AC 146 ms
54,324 KB
testcase_05 AC 137 ms
53,428 KB
testcase_06 AC 144 ms
54,348 KB
testcase_07 AC 147 ms
54,180 KB
testcase_08 AC 137 ms
53,676 KB
testcase_09 AC 145 ms
54,288 KB
testcase_10 AC 147 ms
54,320 KB
testcase_11 AC 150 ms
54,160 KB
testcase_12 AC 145 ms
54,252 KB
testcase_13 AC 216 ms
60,736 KB
testcase_14 AC 226 ms
60,600 KB
testcase_15 AC 217 ms
60,520 KB
testcase_16 AC 224 ms
60,680 KB
testcase_17 AC 227 ms
60,428 KB
testcase_18 AC 229 ms
60,544 KB
testcase_19 AC 227 ms
60,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int n=koko.nextInt();
        double p = koko.nextDouble();
        double[] r = new double[n+1];
        Arrays.fill(r,1);
        double count=0;
        for(int i=2; i<n+1; i++){
            count=count+r[i];
            for(int j=2; j<=n/i; j++){
                r[j*i]=r[j*i]*(1-p);
            }
        }
        System.out.println(count);
    }
}
0