結果
| 問題 | No.365 ジェンガソート |
| コンテスト | |
| ユーザー |
はむ吉🐹
|
| 提出日時 | 2016-05-05 16:00:32 |
| 言語 | OCaml (5.5.0) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 380 bytes |
| 記録 | |
| コンパイル時間 | 100 ms |
| コンパイル使用メモリ | 21,248 KB |
| 実行使用メモリ | 14,848 KB |
| 最終ジャッジ日時 | 2026-09-12 07:04:58 |
| 合計ジャッジ時間 | 2,850 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 16 WA * 25 |
コンパイルメッセージ
ocamlfind: [WARNING] Cannot read directory ./stublibs which is mentioned in ld.conf
File "Main.ml", line 10, characters 5-6:
10 | | _ -> mnoo t ys
^
Warning 11 [redundant-case]: this match case is unused.
ソースコード
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
はむ吉🐹