結果

問題 No.51 やる気の問題
ユーザー taktak
提出日時 2018-05-25 01:12:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 337 ms / 5,000 ms
コード長 410 bytes
コンパイル時間 13,770 ms
コンパイル使用メモリ 188,056 KB
実行使用メモリ 46,772 KB
最終ジャッジ日時 2024-06-28 17:49:04
合計ジャッジ時間 21,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
35,184 KB
testcase_01 AC 295 ms
34,140 KB
testcase_02 AC 294 ms
35,072 KB
testcase_03 AC 298 ms
35,612 KB
testcase_04 AC 295 ms
35,056 KB
testcase_05 AC 302 ms
43,520 KB
testcase_06 AC 303 ms
40,920 KB
testcase_07 AC 299 ms
39,992 KB
testcase_08 AC 299 ms
38,236 KB
testcase_09 AC 337 ms
46,772 KB
testcase_10 AC 303 ms
38,560 KB
testcase_11 AC 304 ms
38,292 KB
testcase_12 AC 306 ms
40,696 KB
testcase_13 AC 304 ms
41,336 KB
testcase_14 AC 302 ms
39,196 KB
testcase_15 AC 310 ms
44,468 KB
testcase_16 AC 303 ms
37,056 KB
testcase_17 AC 297 ms
36,080 KB
testcase_18 AC 306 ms
44,924 KB
testcase_19 AC 312 ms
45,128 KB
testcase_20 AC 307 ms
41,088 KB
testcase_21 AC 295 ms
35,560 KB
testcase_22 AC 307 ms
45,912 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (286 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 R    ()  = stdin.ReadLine() |> int64
let Work W D = W / (D * D)

let W = R ()
let D = R ()

(W,D) 
|> Array.unfold(fun (w,d) ->
        match d with
        | 0L ->
            None
        | d  ->
            let dayWork  = Work w d
            let leftWork = w - dayWork
            let leftDay  = d - 1L
            Some(dayWork,(leftWork,leftDay)))
|> Array.last
|> printfn "%i"               
        
0