結果

問題 No.1285 ゴミ捨て
ユーザー semisagisemisagi
提出日時 2020-11-13 21:27:42
言語 OCaml
(5.2.1)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 2,103 ms
コンパイル使用メモリ 21,700 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-11-28 21:41:14
合計ジャッジ時間 3,555 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

let read_int () = Scanf.scanf " %d" (fun x -> x);;

let n = read_int ();;
let a = Array.init n (fun _ -> read_int ());;
Array.sort compare a;;

let all = ref true;;
for i = 0 to n - 2 do
  if a.(i) + 1 >= a.(i + 1) then
    all := false
done;;

print_endline (if !all then "1" else "2");;
0