結果

問題 No.135 とりあえず1次元の問題
ユーザー r.suzukir.suzuki
提出日時 2016-01-02 23:09:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 535 ms / 5,000 ms
コード長 587 bytes
コンパイル時間 3,003 ms
コンパイル使用メモリ 75,696 KB
実行使用メモリ 59,388 KB
最終ジャッジ日時 2024-06-11 05:14:20
合計ジャッジ時間 8,532 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 535 ms
59,388 KB
testcase_01 AC 99 ms
40,924 KB
testcase_02 AC 99 ms
40,840 KB
testcase_03 AC 108 ms
41,312 KB
testcase_04 AC 116 ms
41,052 KB
testcase_05 AC 117 ms
41,336 KB
testcase_06 AC 115 ms
40,960 KB
testcase_07 AC 113 ms
41,024 KB
testcase_08 AC 115 ms
40,880 KB
testcase_09 AC 114 ms
41,180 KB
testcase_10 AC 114 ms
41,556 KB
testcase_11 AC 125 ms
41,264 KB
testcase_12 AC 133 ms
41,372 KB
testcase_13 AC 117 ms
41,132 KB
testcase_14 AC 139 ms
42,092 KB
testcase_15 AC 133 ms
41,932 KB
testcase_16 AC 157 ms
42,420 KB
testcase_17 AC 154 ms
42,292 KB
testcase_18 AC 121 ms
41,524 KB
testcase_19 AC 150 ms
41,776 KB
testcase_20 AC 136 ms
41,752 KB
testcase_21 AC 434 ms
47,700 KB
testcase_22 AC 471 ms
48,152 KB
evil01.txt AC 513 ms
48,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class No_166 {

	public static void main(String[] args) {
		java.util.Scanner sc = new java.util.Scanner(System.in);
		int n = sc.nextInt();
		int[] X = new int[n];
		int distance = Integer.MAX_VALUE;

		for (int i = 0; i < n; i++) {
			X[i] = sc.nextInt();
		}

		java.util.Arrays.sort(X);

		for (int i = 0; i < X.length - 1; i++) {
			if (X[i] == X[i + 1]) {
				continue;
			}
			distance = Math.min(distance, Math.abs(X[i] - X[i + 1]));
		}

		if (distance != Integer.MAX_VALUE) {
			System.out.println(distance);
		} else {
			System.out.println(0);
		}
		sc.close();

	}

}
0