結果

問題 No.51 やる気の問題
ユーザー noelexnoelex
提出日時 2017-11-03 12:26:05
言語 F#
(F# 4.0)
結果
AC  
実行時間 354 ms / 5,000 ms
コード長 500 bytes
コンパイル時間 11,026 ms
コンパイル使用メモリ 185,476 KB
実行使用メモリ 37,144 KB
最終ジャッジ日時 2024-11-22 15:21:04
合計ジャッジ時間 19,643 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 345 ms
34,020 KB
testcase_01 AC 339 ms
34,660 KB
testcase_02 AC 339 ms
33,972 KB
testcase_03 AC 339 ms
35,008 KB
testcase_04 AC 337 ms
34,556 KB
testcase_05 AC 344 ms
35,872 KB
testcase_06 AC 340 ms
36,240 KB
testcase_07 AC 342 ms
35,256 KB
testcase_08 AC 341 ms
35,652 KB
testcase_09 AC 345 ms
37,144 KB
testcase_10 AC 342 ms
34,980 KB
testcase_11 AC 341 ms
35,004 KB
testcase_12 AC 341 ms
36,284 KB
testcase_13 AC 354 ms
36,072 KB
testcase_14 AC 342 ms
35,088 KB
testcase_15 AC 347 ms
36,664 KB
testcase_16 AC 341 ms
35,296 KB
testcase_17 AC 339 ms
34,264 KB
testcase_18 AC 344 ms
36,468 KB
testcase_19 AC 345 ms
36,800 KB
testcase_20 AC 340 ms
36,084 KB
testcase_21 AC 339 ms
34,948 KB
testcase_22 AC 346 ms
36,748 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (678 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 workOf days = function
    | work when work>0 ->
        let w = float work
        let d = float days
        (w/pown d 2) |> floor |> int |> Some
    | _ ->
        None 

let rec workOfDue day work prev=
    let s=workOf day work
    match s with
    | None -> 
        prev
    | Some w ->
        workOfDue (day-1) (work-w) w

[<EntryPoint>]
let main argv = 
    let w = Console.ReadLine () |> int
    let d = Console.ReadLine () |> int
    workOfDue d w 0 |> printfn "%d"
    0
0