結果

問題 No.135 とりあえず1次元の問題
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-24 16:28:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 611 ms / 5,000 ms
コード長 379 bytes
コンパイル時間 2,077 ms
コンパイル使用メモリ 74,836 KB
実行使用メモリ 49,068 KB
最終ジャッジ日時 2024-06-11 01:53:00
合計ジャッジ時間 8,065 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 588 ms
48,952 KB
testcase_01 AC 103 ms
40,260 KB
testcase_02 AC 113 ms
41,324 KB
testcase_03 AC 115 ms
41,488 KB
testcase_04 AC 124 ms
41,976 KB
testcase_05 AC 125 ms
42,060 KB
testcase_06 AC 125 ms
41,452 KB
testcase_07 AC 119 ms
41,104 KB
testcase_08 AC 127 ms
41,776 KB
testcase_09 AC 115 ms
40,904 KB
testcase_10 AC 118 ms
41,712 KB
testcase_11 AC 127 ms
41,716 KB
testcase_12 AC 152 ms
41,948 KB
testcase_13 AC 130 ms
41,504 KB
testcase_14 AC 163 ms
42,440 KB
testcase_15 AC 136 ms
41,732 KB
testcase_16 AC 169 ms
42,716 KB
testcase_17 AC 168 ms
42,524 KB
testcase_18 AC 131 ms
41,788 KB
testcase_19 AC 160 ms
42,320 KB
testcase_20 AC 154 ms
42,084 KB
testcase_21 AC 505 ms
48,428 KB
testcase_22 AC 611 ms
49,068 KB
evil01.txt AC 510 ms
48,680 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;)m=((d=Math.abs(X[i]-X[++i]))>0&&d<m)?d:m;
		System.out.println(m==Integer.MAX_VALUE?0:m);
	}
}
0