結果

問題 No.144 エラトステネスのざる
ユーザー iwotiwot
提出日時 2020-06-23 15:19:04
言語 F#
(F# 4.0)
結果
AC  
実行時間 711 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 7,008 ms
コンパイル使用メモリ 194,776 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-07-03 19:17:32
合計ジャッジ時間 16,416 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 319 ms
35,504 KB
testcase_01 AC 312 ms
35,420 KB
testcase_02 AC 322 ms
35,376 KB
testcase_03 AC 322 ms
35,200 KB
testcase_04 AC 321 ms
35,124 KB
testcase_05 AC 316 ms
35,120 KB
testcase_06 AC 316 ms
35,328 KB
testcase_07 AC 317 ms
35,372 KB
testcase_08 AC 324 ms
35,372 KB
testcase_09 AC 317 ms
35,376 KB
testcase_10 AC 325 ms
35,376 KB
testcase_11 AC 315 ms
35,604 KB
testcase_12 AC 317 ms
34,740 KB
testcase_13 AC 711 ms
78,208 KB
testcase_14 AC 706 ms
78,140 KB
testcase_15 AC 705 ms
78,080 KB
testcase_16 AC 707 ms
78,080 KB
testcase_17 AC 690 ms
77,952 KB
testcase_18 AC 706 ms
78,136 KB
testcase_19 AC 691 ms
78,080 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (240 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let input = stdin.ReadLine().Split(' ')
let N = input.[0] |> int
let p = input.[1] |> float

let count = Array.zeroCreate (N+1)
for i = 2 to N do
    for j in i*2 .. i .. N do
        count.[j] <- count.[j] + 1

let p2 = 1.0 - p
[ for i = 2 to N do
    yield if count.[i] = 0 then 1.0 else p2 ** (float count.[i]) ]
|> List.sum
|> printfn "%f"
0