結果

問題 No.51 やる気の問題
ユーザー regeregeregerege
提出日時 2016-01-13 06:13:28
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 252 bytes
コンパイル時間 7,267 ms
コンパイル使用メモリ 184,276 KB
実行使用メモリ 40,448 KB
最終ジャッジ日時 2024-09-19 18:55:07
合計ジャッジ時間 15,795 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 333 ms
34,664 KB
testcase_01 AC 332 ms
34,928 KB
testcase_02 AC 322 ms
34,912 KB
testcase_03 AC 321 ms
35,028 KB
testcase_04 AC 320 ms
34,832 KB
testcase_05 RE -
testcase_06 AC 334 ms
36,704 KB
testcase_07 AC 338 ms
36,400 KB
testcase_08 AC 328 ms
35,896 KB
testcase_09 RE -
testcase_10 AC 331 ms
35,924 KB
testcase_11 AC 334 ms
36,048 KB
testcase_12 AC 334 ms
36,568 KB
testcase_13 AC 324 ms
36,896 KB
testcase_14 AC 325 ms
36,356 KB
testcase_15 RE -
testcase_16 AC 331 ms
35,748 KB
testcase_17 AC 320 ms
35,004 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 329 ms
36,740 KB
testcase_21 AC 332 ms
35,108 KB
testcase_22 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (251 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 ``No.51 やる気の問題`` () =
    let W = int <| stdin.ReadLine()
    let D = int <| stdin.ReadLine()
    seq [ D..(-1)..1 ]
    |> Seq.take (D-1)
    |> Seq.fold (fun s n -> s - (s/(n*n))) W
    |> printfn "%d"
``No.51 やる気の問題`` ()
0