結果

問題 No.617 Nafmo、買い出しに行く
ユーザー taktak
提出日時 2019-02-21 12:13:45
言語 F#
(F# 4.0)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 15,595 ms
コンパイル使用メモリ 188,824 KB
実行使用メモリ 30,080 KB
最終ジャッジ日時 2024-11-17 10:58:48
合計ジャッジ時間 14,653 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
29,696 KB
testcase_01 AC 60 ms
29,696 KB
testcase_02 AC 56 ms
29,824 KB
testcase_03 AC 65 ms
29,952 KB
testcase_04 AC 56 ms
29,692 KB
testcase_05 AC 75 ms
29,952 KB
testcase_06 AC 226 ms
29,952 KB
testcase_07 AC 228 ms
30,080 KB
testcase_08 AC 55 ms
29,692 KB
testcase_09 AC 54 ms
29,568 KB
testcase_10 AC 223 ms
29,824 KB
testcase_11 AC 221 ms
30,080 KB
testcase_12 AC 227 ms
29,820 KB
testcase_13 AC 224 ms
29,696 KB
testcase_14 AC 227 ms
29,824 KB
testcase_15 AC 297 ms
29,952 KB
testcase_16 AC 300 ms
29,824 KB
testcase_17 AC 295 ms
29,696 KB
testcase_18 AC 55 ms
29,548 KB
testcase_19 AC 54 ms
29,440 KB
testcase_20 AC 54 ms
29,540 KB
testcase_21 AC 56 ms
29,540 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (664 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

type [<Measure>] kg

let bitDP (xs: int64<kg> list) n k =
  let mutable ans = 0L<kg>
  for i in 0 .. (1 <<< n) do
    let mutable sum = 0L<kg>
    for j in 0 .. (n-1) do
      if ((i >>> j) &&& 1) = 1 then sum <- sum + xs.[j]
    if sum <= k then ans <- max ans sum 
  ans
  
let N, K =
  let t = Console.ReadLine().Split()
  (t.[0] |> int), (t.[1] |> int64 |> (*) 1L<kg>)
  
let A = List.init N (fun _ ->
  Console.ReadLine() |> int64 |> (*)1L<kg>)

bitDP A N K
|> Console.WriteLine
0