結果
問題 | No.135 とりあえず1次元の問題 |
ユーザー |
![]() |
提出日時 | 2017-08-11 04:36:13 |
言語 | OCaml (5.2.1) |
結果 |
AC
|
実行時間 | 55 ms / 5,000 ms |
コード長 | 363 bytes |
コンパイル時間 | 427 ms |
コンパイル使用メモリ | 21,580 KB |
実行使用メモリ | 6,912 KB |
最終ジャッジ日時 | 2024-10-09 00:09:58 |
合計ジャッジ時間 | 1,660 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 22 |
ソースコード
let read () = Scanf.scanf "%d " (fun i -> i) let () = let n = read () in let a = Array.init n (fun _ -> read ()) in Array.fast_sort (-) a; let rec doit i m = if i = n then m else let x = a.(i) - a.(i-1) in doit (i + 1) (if x = 0 then m else min m x) in let m = doit 1 max_int in Printf.printf "%d\n" (if m = max_int then 0 else m)