結果

問題 No.135 とりあえず1次元の問題
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-24 16:25:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 639 ms / 5,000 ms
コード長 392 bytes
コンパイル時間 2,836 ms
コンパイル使用メモリ 75,008 KB
実行使用メモリ 48,884 KB
最終ジャッジ日時 2024-06-11 01:51:41
合計ジャッジ時間 8,344 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 585 ms
48,772 KB
testcase_01 AC 117 ms
41,412 KB
testcase_02 AC 118 ms
41,704 KB
testcase_03 AC 116 ms
41,580 KB
testcase_04 AC 128 ms
41,520 KB
testcase_05 AC 125 ms
41,532 KB
testcase_06 AC 129 ms
41,660 KB
testcase_07 AC 127 ms
41,796 KB
testcase_08 AC 130 ms
41,396 KB
testcase_09 AC 131 ms
41,740 KB
testcase_10 AC 133 ms
41,592 KB
testcase_11 AC 126 ms
41,808 KB
testcase_12 AC 148 ms
41,852 KB
testcase_13 AC 128 ms
41,488 KB
testcase_14 AC 166 ms
42,364 KB
testcase_15 AC 141 ms
41,664 KB
testcase_16 AC 168 ms
42,456 KB
testcase_17 AC 166 ms
42,468 KB
testcase_18 AC 128 ms
41,672 KB
testcase_19 AC 166 ms
42,448 KB
testcase_20 AC 157 ms
42,184 KB
testcase_21 AC 466 ms
48,144 KB
testcase_22 AC 639 ms
48,884 KB
evil01.txt AC 554 ms
48,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] a) {
		Scanner s = new Scanner(System.in);
		int N=s.nextInt(),i=0,d,m=Integer.MAX_VALUE;
		int[] X=new int[N];
		for(;i<N;)X[i++]=s.nextInt();
		Arrays.sort(X);
		for(i=0;i<N-1;){
			d=Math.abs(X[i]-X[++i]);
			m=(d>0&&d<m)?d:m;
		}
		System.out.println(m==Integer.MAX_VALUE?0:m);
	}
}
0