結果

問題 No.135 とりあえず1次元の問題
ユーザー koukonko
提出日時 2015-12-12 15:39:46
言語 Java
(openjdk 23)
結果
AC  
実行時間 740 ms / 5,000 ms
コード長 713 bytes
コンパイル時間 2,982 ms
コンパイル使用メモリ 87,652 KB
実行使用メモリ 51,404 KB
最終ジャッジ日時 2025-01-03 10:54:41
合計ジャッジ時間 9,870 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {

		try {
			Scanner scan = new Scanner(System.in);
			int N = scan.nextInt();
			ArrayList<Integer> x = new ArrayList<>(N);
			int ans = Integer.MAX_VALUE;

			for (int i = 0; i < N; ++i) {
				x.add(scan.nextInt());
			}
			x.sort(null);

			for (int i = 0; i < N - 1; ++i) {

				if (!x.get(i).equals(x.get(i + 1))) {
					if (Math.abs(x.get(i) - x.get(i + 1)) < ans) {
						ans = Math.abs(x.get(i) - x.get(i + 1));
					}
				}
			}

			if (ans == Integer.MAX_VALUE) {
				ans = 0;
			}
			System.out.println(ans);

			scan.close();
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}
0