結果

問題 No.135 とりあえず1次元の問題
ユーザー nCk_cvnCk_cv
提出日時 2016-01-21 02:14:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 602 ms / 5,000 ms
コード長 724 bytes
コンパイル時間 2,051 ms
コンパイル使用メモリ 77,288 KB
実行使用メモリ 50,124 KB
最終ジャッジ日時 2024-06-11 05:24:41
合計ジャッジ時間 8,180 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 602 ms
50,124 KB
testcase_01 AC 109 ms
41,480 KB
testcase_02 AC 106 ms
41,564 KB
testcase_03 AC 115 ms
41,816 KB
testcase_04 AC 117 ms
41,924 KB
testcase_05 AC 126 ms
41,644 KB
testcase_06 AC 122 ms
41,556 KB
testcase_07 AC 118 ms
41,952 KB
testcase_08 AC 118 ms
41,624 KB
testcase_09 AC 122 ms
41,892 KB
testcase_10 AC 132 ms
41,724 KB
testcase_11 AC 121 ms
41,720 KB
testcase_12 AC 147 ms
42,096 KB
testcase_13 AC 121 ms
42,064 KB
testcase_14 AC 165 ms
42,620 KB
testcase_15 AC 139 ms
42,024 KB
testcase_16 AC 178 ms
42,604 KB
testcase_17 AC 168 ms
42,180 KB
testcase_18 AC 134 ms
41,832 KB
testcase_19 AC 165 ms
42,528 KB
testcase_20 AC 157 ms
42,112 KB
testcase_21 AC 476 ms
48,368 KB
testcase_22 AC 493 ms
48,752 KB
evil01.txt AC 530 ms
48,588 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();
		}
		for(int i = 0; i < N; i++) {
			int idx1 = (int)Math.random() * N;
			int idx2 = (int)Math.random() * N;
			int tmp = x[idx1];
			x[idx1] = x[idx2];
			x[idx2] = tmp;
		}
		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