結果

問題 No.51 やる気の問題
ユーザー hum_ophum_op
提出日時 2016-04-04 13:04:21
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 342 bytes
コンパイル時間 13,302 ms
コンパイル使用メモリ 184,556 KB
実行使用メモリ 40,300 KB
最終ジャッジ日時 2024-10-02 13:10:02
合計ジャッジ時間 22,628 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
34,052 KB
testcase_01 AC 339 ms
34,232 KB
testcase_02 AC 344 ms
34,348 KB
testcase_03 AC 340 ms
33,876 KB
testcase_04 AC 339 ms
34,600 KB
testcase_05 RE -
testcase_06 AC 342 ms
33,924 KB
testcase_07 AC 339 ms
34,540 KB
testcase_08 AC 341 ms
34,540 KB
testcase_09 RE -
testcase_10 AC 340 ms
34,536 KB
testcase_11 AC 339 ms
33,532 KB
testcase_12 AC 337 ms
34,332 KB
testcase_13 AC 340 ms
33,876 KB
testcase_14 AC 341 ms
34,232 KB
testcase_15 RE -
testcase_16 AC 339 ms
34,540 KB
testcase_17 AC 340 ms
33,932 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 341 ms
34,332 KB
testcase_21 AC 339 ms
33,804 KB
testcase_22 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (622 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 #

open System

let No68 () =
    let W = int <| Console.ReadLine()
    let D = int <| Console.ReadLine()

    let rec yaruki (W:int) (D:int) =
        // printfn "%d %d" W D  // debug
        if D = 1 then
            W
        else
            let y = W / (D * D)
            yaruki (W-y) (D - 1)

    printfn "%d" (yaruki W D)
    ()

No68 ()
0