結果

問題 No.617 Nafmo、買い出しに行く
ユーザー ichibanshiboriichibanshibori
提出日時 2018-09-23 04:26:24
言語 F#
(F# 4.0)
結果
AC  
実行時間 605 ms / 2,000 ms
コード長 1,059 bytes
コンパイル時間 19,125 ms
コンパイル使用メモリ 195,756 KB
実行使用メモリ 58,620 KB
最終ジャッジ日時 2024-07-20 06:35:12
合計ジャッジ時間 22,422 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 354 ms
34,980 KB
testcase_01 AC 361 ms
34,948 KB
testcase_02 AC 352 ms
35,176 KB
testcase_03 AC 375 ms
36,776 KB
testcase_04 AC 354 ms
34,688 KB
testcase_05 AC 389 ms
39,104 KB
testcase_06 AC 353 ms
35,536 KB
testcase_07 AC 605 ms
58,620 KB
testcase_08 AC 350 ms
34,944 KB
testcase_09 AC 351 ms
34,688 KB
testcase_10 AC 604 ms
58,356 KB
testcase_11 AC 598 ms
58,464 KB
testcase_12 AC 598 ms
58,316 KB
testcase_13 AC 576 ms
58,616 KB
testcase_14 AC 600 ms
58,484 KB
testcase_15 AC 358 ms
34,832 KB
testcase_16 AC 357 ms
34,956 KB
testcase_17 AC 352 ms
34,716 KB
testcase_18 AC 351 ms
34,440 KB
testcase_19 AC 351 ms
35,380 KB
testcase_20 AC 353 ms
35,108 KB
testcase_21 AC 353 ms
35,532 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (483 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 combination f lst =
    let rec combination' restLst curLst =
        match restLst with
        | [] -> ()
        | e :: rest ->
            let curLst' = e :: curLst
            if f curLst' then
                combination' rest curLst'
                combination' rest curLst
    combination' lst []

exception RecursiveFinish

let solve aLst k =
    let mutable result = 0
    try
        combination
            (fun lst ->
                let sum = List.sum lst
                if sum = k then
                    result <- k
                    raise RecursiveFinish
                else
                    if result < sum && sum < k then
                        result <- sum
                    sum < k)
            aLst
    with
    | RecursiveFinish -> ()

    printfn "%d" result

let () =
    let n, k =
        stdin.ReadLine()
        |> fun s -> s.Split()
        |> fun arr -> (int arr.[0], int arr.[1])
    let aLst =
        seq { for _ in 1..n -> stdin.ReadLine() |> int }
        |> Seq.sort
        |> Seq.toList
    solve aLst k
0