結果

問題 No.51 やる気の問題
ユーザー regeregeregerege
提出日時 2016-01-13 06:15:57
言語 F#
(F# 4.0)
結果
AC  
実行時間 442 ms / 5,000 ms
コード長 291 bytes
コンパイル時間 6,436 ms
コンパイル使用メモリ 186,912 KB
実行使用メモリ 63,448 KB
最終ジャッジ日時 2024-09-19 18:55:25
合計ジャッジ時間 16,044 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
35,216 KB
testcase_01 AC 328 ms
35,896 KB
testcase_02 AC 327 ms
35,372 KB
testcase_03 AC 326 ms
36,228 KB
testcase_04 AC 333 ms
35,524 KB
testcase_05 AC 406 ms
56,304 KB
testcase_06 AC 366 ms
49,424 KB
testcase_07 AC 371 ms
49,596 KB
testcase_08 AC 372 ms
43,140 KB
testcase_09 AC 427 ms
62,732 KB
testcase_10 AC 361 ms
44,516 KB
testcase_11 AC 355 ms
43,264 KB
testcase_12 AC 391 ms
50,668 KB
testcase_13 AC 384 ms
51,568 KB
testcase_14 AC 366 ms
47,520 KB
testcase_15 AC 425 ms
62,592 KB
testcase_16 AC 357 ms
41,980 KB
testcase_17 AC 342 ms
37,268 KB
testcase_18 AC 429 ms
62,736 KB
testcase_19 AC 425 ms
63,448 KB
testcase_20 AC 379 ms
49,788 KB
testcase_21 AC 342 ms
37,108 KB
testcase_22 AC 442 ms
63,448 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (215 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 = stdin.ReadLine() |> int |> bigint
    let D = stdin.ReadLine() |> int |> bigint
    seq [ D..(-1I)..1I ]
    |> Seq.take (int D - 1)
    |> Seq.fold (fun s n -> s - (s/(n*n))) W
    |> int
    |> printfn "%d"
``No.51 やる気の問題`` ()
0