結果

問題 No.365 ジェンガソート
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-05-05 19:37:24
言語 OCaml
(5.1.0)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 32 ms
13,224 KB
testcase_17 AC 36 ms
14,668 KB
testcase_18 AC 5 ms
5,248 KB
testcase_19 AC 36 ms
14,408 KB
testcase_20 AC 11 ms
6,656 KB
testcase_21 AC 10 ms
5,888 KB
testcase_22 AC 28 ms
11,124 KB
testcase_23 AC 18 ms
9,344 KB
testcase_24 AC 28 ms
11,800 KB
testcase_25 AC 9 ms
5,760 KB
testcase_26 AC 21 ms
10,240 KB
testcase_27 AC 41 ms
15,160 KB
testcase_28 AC 25 ms
11,344 KB
testcase_29 AC 36 ms
14,132 KB
testcase_30 AC 25 ms
11,352 KB
testcase_31 AC 12 ms
6,656 KB
testcase_32 AC 12 ms
7,168 KB
testcase_33 AC 40 ms
15,240 KB
testcase_34 AC 8 ms
5,504 KB
testcase_35 AC 27 ms
10,848 KB
testcase_36 AC 41 ms
15,228 KB
testcase_37 AC 41 ms
15,260 KB
testcase_38 AC 41 ms
15,224 KB
testcase_39 AC 40 ms
15,228 KB
testcase_40 AC 41 ms
15,224 KB
権限があれば一括ダウンロードができます

ソースコード

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