結果

問題 No.144 エラトステネスのざる
ユーザー nebukuro09nebukuro09
提出日時 2016-10-25 17:01:05
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 2,860 ms
コンパイル使用メモリ 154,292 KB
実行使用メモリ 11,932 KB
最終ジャッジ日時 2024-06-12 04:42:41
合計ジャッジ時間 3,975 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 71 ms
10,988 KB
testcase_14 AC 74 ms
11,380 KB
testcase_15 AC 76 ms
11,112 KB
testcase_16 AC 73 ms
10,888 KB
testcase_17 AC 73 ms
11,932 KB
testcase_18 AC 87 ms
10,824 KB
testcase_19 AC 78 ms
10,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.array;
import std.string;
import std.conv;
import std.algorithm;
import std.typecons;
import std.range;

void main() {
  auto input = readln().split;
  int N = input[0].to!int;
  double P = 1.0-input[1].to!double;
  double[] table = new double[](N+1);
  foreach (i; iota(N+1))
    table[i] = 1.0;
  
  foreach (i; iota(2, N+1))
    foreach(j; iota(i+i, N+1, i))
      table[j] *= P;

  double ans = 0.0;
  foreach (i; iota(2, N+1))
    ans += table[i];
  writef("%.07f", ans);
}
0