結果

問題 No.135 とりあえず1次元の問題
ユーザー xsdxsd
提出日時 2020-06-14 23:42:02
言語 OCaml
(5.2.1)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 539 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 21,872 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-10-09 01:14:01
合計ジャッジ時間 1,892 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

Scanf.scanf "%d" (fun n ->
    let module S = Set.Make (struct type t = int let compare = compare end) in
    let rec loop i acc =
        if i = n then S.elements acc else
            loop (i + 1) (Scanf.scanf " %d" (fun x -> S.add x acc))
    in
    let a = Array.of_list (loop 0 S.empty) in
    let n = Array.length a in
    Printf.printf "%d\n" @@
        if n = 1 then 0 else
            let rec loop i acc =
                if i = n then acc else loop (i + 1) (min acc (a.(i) - a.(i - 1)))
            in
            loop 1 max_int
)
0