結果

問題 No.365 ジェンガソート
ユーザー はむ吉🐹
提出日時 2016-05-05 19:37:24
言語 OCaml
(5.2.1)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 19,824 KB
実行使用メモリ 15,260 KB
最終ジャッジ日時 2024-10-08 23:47:43
合計ジャッジ時間 2,326 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

let words s =
    let r = Str.regexp " +" in
    Str.split r s

let min_num_of_ops n xs =
	let rec mnoo t = function
		[] -> t
		| y :: ys -> if y = t then mnoo (t - 1) ys else mnoo t ys
	in mnoo n (List.rev xs)
		
let () =
    let n = read_int () in
    let xs = List.map int_of_string (words (read_line ())) in
    let ans = min_num_of_ops n xs in
    print_int ans
0