結果

問題 No.5 数字のブロック
ユーザー regeregeregerege
提出日時 2015-11-25 20:09:56
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 418 bytes
コンパイル時間 14,158 ms
コンパイル使用メモリ 191,684 KB
実行使用メモリ 36,956 KB
最終ジャッジ日時 2024-09-13 17:25:48
合計ジャッジ時間 27,555 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 345 ms
34,548 KB
testcase_01 AC 343 ms
35,144 KB
testcase_02 WA -
testcase_03 AC 349 ms
35,996 KB
testcase_04 AC 347 ms
35,796 KB
testcase_05 WA -
testcase_06 AC 349 ms
35,640 KB
testcase_07 AC 350 ms
35,672 KB
testcase_08 AC 350 ms
36,336 KB
testcase_09 AC 348 ms
35,320 KB
testcase_10 AC 350 ms
36,384 KB
testcase_11 AC 348 ms
35,632 KB
testcase_12 AC 349 ms
36,136 KB
testcase_13 AC 348 ms
35,240 KB
testcase_14 AC 347 ms
34,248 KB
testcase_15 WA -
testcase_16 AC 347 ms
36,232 KB
testcase_17 AC 349 ms
35,936 KB
testcase_18 AC 346 ms
36,292 KB
testcase_19 AC 351 ms
36,956 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 348 ms
34,244 KB
testcase_24 AC 344 ms
35,272 KB
testcase_25 AC 345 ms
35,300 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (326 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 ``No.5 数字のブロック`` () =
    let L = int <| stdin.ReadLine()
    let M = int <| stdin.ReadLine()
    let N =
        stdin.ReadLine().Split(' ')
        |> Seq.map int
        |> Seq.sort
        |> Seq.toList
    let rec f s c = function
        | [] -> c
        | x::xs ->
            if s >= L then c
            else f (s+x) (c+1) xs
    printfn "%d" ((f 0 0 N)-1)
``No.5 数字のブロック`` ()
0