結果

問題 No.5 数字のブロック
ユーザー hum_ophum_op
提出日時 2016-04-16 11:49:46
言語 F#
(F# 4.0)
結果
AC  
実行時間 347 ms / 5,000 ms
コード長 399 bytes
コンパイル時間 9,250 ms
コンパイル使用メモリ 187,292 KB
実行使用メモリ 38,144 KB
最終ジャッジ日時 2024-11-18 08:31:28
合計ジャッジ時間 18,485 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 312 ms
36,296 KB
testcase_01 AC 311 ms
36,044 KB
testcase_02 AC 315 ms
35,596 KB
testcase_03 AC 308 ms
36,596 KB
testcase_04 AC 320 ms
36,972 KB
testcase_05 AC 315 ms
36,280 KB
testcase_06 AC 310 ms
36,248 KB
testcase_07 AC 314 ms
36,308 KB
testcase_08 AC 314 ms
36,944 KB
testcase_09 AC 314 ms
35,968 KB
testcase_10 AC 314 ms
37,252 KB
testcase_11 AC 316 ms
36,008 KB
testcase_12 AC 318 ms
36,868 KB
testcase_13 AC 316 ms
36,848 KB
testcase_14 AC 313 ms
35,884 KB
testcase_15 AC 320 ms
36,648 KB
testcase_16 AC 319 ms
36,136 KB
testcase_17 AC 316 ms
36,652 KB
testcase_18 AC 312 ms
36,852 KB
testcase_19 AC 319 ms
38,144 KB
testcase_20 AC 307 ms
35,504 KB
testcase_21 AC 310 ms
36,408 KB
testcase_22 AC 310 ms
35,608 KB
testcase_23 AC 347 ms
35,936 KB
testcase_24 AC 309 ms
36,404 KB
testcase_25 AC 310 ms
36,292 KB
testcase_26 AC 306 ms
35,488 KB
testcase_27 AC 307 ms
36,044 KB
testcase_28 AC 311 ms
35,896 KB
testcase_29 AC 312 ms
36,572 KB
testcase_30 AC 315 ms
36,108 KB
testcase_31 AC 317 ms
36,144 KB
testcase_32 AC 315 ms
35,900 KB
testcase_33 AC 314 ms
35,892 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (272 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 No5 () =
    let L = int <| Console.ReadLine()
    let N = int <| Console.ReadLine()
    let A = (fun e-> Console.ReadLine().Split(' ') |> Array.map Int32.Parse |> Array.sort ) ()

    let rec last (i:int) (s:int) (c:int) =
        if i < N && s + A.[i] <= L then
            last (i + 1) (s + A.[i]) (c + 1)
        else
            c

    printfn "%d" <| last 0 0 0
    ()

No5 ()
0