結果

問題 No.51 やる気の問題
ユーザー taktak
提出日時 2018-05-25 01:09:59
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 405 bytes
コンパイル時間 14,315 ms
コンパイル使用メモリ 188,248 KB
実行使用メモリ 40,820 KB
最終ジャッジ日時 2024-06-28 17:48:20
合計ジャッジ時間 23,271 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 330 ms
35,176 KB
testcase_01 AC 330 ms
35,052 KB
testcase_02 AC 328 ms
35,164 KB
testcase_03 AC 329 ms
35,528 KB
testcase_04 AC 321 ms
35,276 KB
testcase_05 RE -
testcase_06 AC 322 ms
39,044 KB
testcase_07 AC 330 ms
38,640 KB
testcase_08 AC 338 ms
37,192 KB
testcase_09 RE -
testcase_10 AC 328 ms
37,420 KB
testcase_11 AC 334 ms
37,336 KB
testcase_12 AC 335 ms
39,636 KB
testcase_13 AC 335 ms
39,452 KB
testcase_14 AC 326 ms
38,436 KB
testcase_15 RE -
testcase_16 AC 326 ms
36,740 KB
testcase_17 AC 325 ms
35,532 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 337 ms
39,272 KB
testcase_21 AC 338 ms
35,400 KB
testcase_22 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (358 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() |> int
let Work W D = W / (D * D)

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

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