結果

問題 No.156 キャンディー・ボックス
ユーザー r6ever6eve
提出日時 2017-08-11 07:54:30
言語 OCaml
(5.2.1)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 21,704 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-09 00:10:42
合計ジャッジ時間 1,400 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

let () =
  let n, m = Scanf.scanf "%d %d " (fun n m -> n, m) in
  let c = Array.init n (fun _ -> Scanf.scanf "%d " (fun i -> i)) in
  Array.fast_sort (-) c;
  let rec doit i m =
    if i = n then i
    else if c.(i) > m then i
    else doit (i + 1) (m - c.(i)) in
  doit 0 m |> Printf.printf "%d\n"
0