結果

問題 No.135 とりあえず1次元の問題
ユーザー ffmm00ffmm00
提出日時 2015-06-11 17:51:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 503 ms / 5,000 ms
コード長 549 bytes
コンパイル時間 2,967 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 59,580 KB
最終ジャッジ日時 2024-06-11 02:14:32
合計ジャッジ時間 9,036 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 503 ms
59,348 KB
testcase_01 AC 113 ms
54,156 KB
testcase_02 AC 101 ms
53,064 KB
testcase_03 AC 109 ms
54,100 KB
testcase_04 AC 122 ms
54,348 KB
testcase_05 AC 119 ms
54,152 KB
testcase_06 AC 118 ms
54,108 KB
testcase_07 AC 135 ms
54,448 KB
testcase_08 AC 138 ms
54,236 KB
testcase_09 AC 140 ms
54,388 KB
testcase_10 AC 138 ms
54,264 KB
testcase_11 AC 130 ms
54,432 KB
testcase_12 AC 136 ms
54,336 KB
testcase_13 AC 128 ms
53,960 KB
testcase_14 AC 165 ms
54,324 KB
testcase_15 AC 147 ms
54,180 KB
testcase_16 AC 164 ms
54,428 KB
testcase_17 AC 180 ms
54,540 KB
testcase_18 AC 128 ms
54,220 KB
testcase_19 AC 156 ms
54,764 KB
testcase_20 AC 140 ms
54,292 KB
testcase_21 AC 480 ms
59,228 KB
testcase_22 AC 480 ms
59,580 KB
evil01.txt AC 580 ms
59,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class N135 {

	public static void main(String[] args) {

		Scanner sca = new Scanner(System.in);

		int N = sca.nextInt();
		int[] x = new int[N];
		int A = 0;
		int min = 1000001;

		for (int i = 0; i < N; i++) {
			x[i] = sca.nextInt();
		}
		
		Arrays.sort(x);

		for (int i = 0; i < N - 1; i++) {
			if (x[i] != x[i + 1]) {
				A = Math.abs(x[i] - x[i + 1]);
				min = Math.min(A, min);
			}
		}

		if (min == 1000001)
			System.out.println(0);
		else
			System.out.println(min);

	}

}
0