結果

問題 No.1271 初めての級数
ユーザー natoriusannatoriusan
提出日時 2023-08-01 16:02:59
言語 F#
(F# 4.0)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 11,064 ms
コンパイル使用メモリ 189,332 KB
実行使用メモリ 35,236 KB
最終ジャッジ日時 2024-10-11 07:31:03
合計ジャッジ時間 13,764 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 347 ms
34,808 KB
testcase_01 AC 346 ms
35,128 KB
testcase_02 AC 345 ms
35,140 KB
testcase_03 AC 346 ms
34,892 KB
testcase_04 AC 344 ms
34,888 KB
testcase_05 AC 347 ms
35,140 KB
testcase_06 AC 349 ms
35,016 KB
testcase_07 AC 345 ms
35,144 KB
testcase_08 AC 353 ms
35,156 KB
testcase_09 AC 350 ms
35,236 KB
testcase_10 AC 350 ms
34,892 KB
testcase_11 AC 354 ms
34,888 KB
testcase_12 AC 350 ms
35,012 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (343 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 k = stdin.ReadLine () |> int

if k = 0 then
    System.Math.PI ** 2. / 6.
else
    [|
        for i in 1..k ->
            1./(float i)
    |] |> Array.sum |> ((*)(1./(float k)))
|> printfn "%f"
0