結果
| 問題 | No.365 ジェンガソート |
| コンテスト | |
| ユーザー |
はむ吉🐹
|
| 提出日時 | 2016-05-05 19:37:24 |
| 言語 | OCaml (5.5.0) |
| 結果 |
AC
不安定
|
| 実行時間 | 25 ms / 2,000 ms |
| + 741µs | |
| コード長 | 368 bytes |
| 記録 | |
| コンパイル時間 | 101 ms |
| コンパイル使用メモリ | 21,376 KB |
| 実行使用メモリ | 14,720 KB |
| 最終ジャッジ日時 | 2026-09-12 07:05:17 |
| 合計ジャッジ時間 | 2,967 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 41 |
コンパイルメッセージ
ocamlfind: [WARNING] Cannot read directory ./stublibs which is mentioned in ld.conf
ソースコード
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
はむ吉🐹