結果

問題 No.144 エラトステネスのざる
ユーザー iwotiwot
提出日時 2020-06-24 14:29:07
言語 Raku
(rakudo v2024.02)
結果
TLE  
実行時間 -
コード長 296 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 145,800 KB
実行使用メモリ 232,648 KB
最終ジャッジ日時 2024-07-03 20:09:26
合計ジャッジ時間 12,008 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 462 ms
143,220 KB
testcase_01 AC 451 ms
136,180 KB
testcase_02 AC 442 ms
137,700 KB
testcase_03 AC 436 ms
137,336 KB
testcase_04 AC 440 ms
136,888 KB
testcase_05 AC 439 ms
137,736 KB
testcase_06 AC 683 ms
148,340 KB
testcase_07 AC 701 ms
147,400 KB
testcase_08 AC 674 ms
147,480 KB
testcase_09 AC 666 ms
147,412 KB
testcase_10 AC 667 ms
147,372 KB
testcase_11 AC 687 ms
147,392 KB
testcase_12 AC 656 ms
146,900 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

my ($n, $p) = get.words;

put solve($n.Int, $p.Rat);

sub solve(Int $n, Rat $p) {
  my $p2 = 1.0 - $p;
  my @s = gather for 1..$n+1 { take 1.0 };
  my $ans = 0.0;
  for 2..$n -> $i {
    $ans = $ans + @s[$i];
    for $i*2,$i*3...$n -> $j {
      @s[$j] = @s[$j] * $p2;
    }
  }
  return $ans;
}
0