結果

問題 No.135 とりあえず1次元の問題
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-24 16:23:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 369 bytes
コンパイル時間 2,372 ms
コンパイル使用メモリ 74,640 KB
実行使用メモリ 54,256 KB
最終ジャッジ日時 2024-06-11 01:51:27
合計ジャッジ時間 9,413 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 668 ms
48,796 KB
testcase_01 AC 126 ms
41,240 KB
testcase_02 AC 114 ms
40,128 KB
testcase_03 WA -
testcase_04 AC 138 ms
41,488 KB
testcase_05 AC 141 ms
41,456 KB
testcase_06 AC 135 ms
41,540 KB
testcase_07 AC 128 ms
40,972 KB
testcase_08 AC 135 ms
41,676 KB
testcase_09 AC 138 ms
41,792 KB
testcase_10 AC 142 ms
41,676 KB
testcase_11 AC 138 ms
41,356 KB
testcase_12 AC 166 ms
42,040 KB
testcase_13 AC 136 ms
41,256 KB
testcase_14 AC 183 ms
42,264 KB
testcase_15 AC 162 ms
41,944 KB
testcase_16 AC 184 ms
42,520 KB
testcase_17 AC 177 ms
42,280 KB
testcase_18 AC 140 ms
41,824 KB
testcase_19 AC 178 ms
42,168 KB
testcase_20 AC 174 ms
41,936 KB
testcase_21 AC 547 ms
48,168 KB
testcase_22 AC 713 ms
48,864 KB
evil01.txt AC 642 ms
48,776 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);
	}
}
0