結果

問題 No.365 ジェンガソート
ユーザー はむ吉🐹
提出日時 2016-05-05 16:00:32
言語 OCaml
(5.2.1)
結果
WA  
実行時間 -
コード長 380 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 19,824 KB
実行使用メモリ 15,376 KB
最終ジャッジ日時 2024-10-08 23:47:10
合計ジャッジ時間 3,032 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 16 WA * 25
権限があれば一括ダウンロードができます
コンパイルメッセージ
File "Main.ml", line 10, characters 5-6:
10 | 			| _ -> mnoo t ys
     			  ^
Warning 11 [redundant-case]: this match case is unused.

ソースコード

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 -> match y with
			t -> mnoo (t - 1) ys
			| _ -> 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