結果

問題 No.1271 初めての級数
ユーザー natoriusannatoriusan
提出日時 2023-08-01 15:53:58
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 133 bytes
コンパイル時間 7,798 ms
コンパイル使用メモリ 187,964 KB
実行使用メモリ 35,152 KB
最終ジャッジ日時 2024-10-11 07:21:58
合計ジャッジ時間 13,041 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

[|
    for i in 1..k ->
        1./(float i)
|] |> Array.sum |> ((*)(1./(float k))) |> printfn "%f"
0