結果

問題 No.135 とりあえず1次元の問題
ユーザー nCk_cvnCk_cv
提出日時 2016-01-21 02:10:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 612 ms / 5,000 ms
コード長 548 bytes
コンパイル時間 2,373 ms
コンパイル使用メモリ 83,580 KB
実行使用メモリ 48,968 KB
最終ジャッジ日時 2024-06-11 05:23:41
合計ジャッジ時間 7,954 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 589 ms
48,584 KB
testcase_01 AC 99 ms
41,264 KB
testcase_02 AC 116 ms
41,104 KB
testcase_03 AC 110 ms
41,140 KB
testcase_04 AC 114 ms
41,536 KB
testcase_05 AC 118 ms
41,552 KB
testcase_06 AC 119 ms
41,512 KB
testcase_07 AC 117 ms
41,604 KB
testcase_08 AC 124 ms
41,576 KB
testcase_09 AC 124 ms
41,308 KB
testcase_10 AC 123 ms
41,652 KB
testcase_11 AC 121 ms
41,644 KB
testcase_12 AC 133 ms
41,580 KB
testcase_13 AC 123 ms
41,220 KB
testcase_14 AC 162 ms
42,408 KB
testcase_15 AC 138 ms
41,416 KB
testcase_16 AC 155 ms
42,280 KB
testcase_17 AC 159 ms
42,060 KB
testcase_18 AC 126 ms
41,584 KB
testcase_19 AC 161 ms
42,404 KB
testcase_20 AC 158 ms
42,032 KB
testcase_21 AC 462 ms
48,128 KB
testcase_22 AC 612 ms
48,968 KB
evil01.txt AC 484 ms
48,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] x = new int[N];
		for(int i = 0; i < N; i++) {
			x[i] = sc.nextInt();
		}
		if(N == 1) System.out.println("0");
		int MIN = Integer.MAX_VALUE;
		Arrays.sort(x);
		for(int i = 0; i < N-1; i++) {
			if(x[i] == x[i+1]) continue;
			MIN = Math.min(MIN, (int)Math.abs(x[i] - x[i+1]));
		}
		if(MIN == Integer.MAX_VALUE) MIN = 0;
		System.out.println(MIN);
	}
}
0