結果

問題 No.135 とりあえず1次元の問題
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-05-15 02:46:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 714 ms / 5,000 ms
コード長 475 bytes
コンパイル時間 4,326 ms
コンパイル使用メモリ 74,420 KB
実行使用メモリ 59,644 KB
最終ジャッジ日時 2024-06-11 02:06:59
合計ジャッジ時間 10,114 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 686 ms
59,644 KB
testcase_01 AC 113 ms
52,680 KB
testcase_02 AC 127 ms
53,768 KB
testcase_03 AC 127 ms
53,932 KB
testcase_04 AC 137 ms
53,972 KB
testcase_05 AC 139 ms
53,936 KB
testcase_06 AC 148 ms
54,220 KB
testcase_07 AC 147 ms
54,164 KB
testcase_08 AC 147 ms
54,256 KB
testcase_09 AC 148 ms
53,960 KB
testcase_10 AC 145 ms
54,004 KB
testcase_11 AC 139 ms
54,172 KB
testcase_12 AC 162 ms
54,072 KB
testcase_13 AC 139 ms
54,048 KB
testcase_14 AC 181 ms
54,332 KB
testcase_15 AC 167 ms
54,128 KB
testcase_16 AC 182 ms
54,332 KB
testcase_17 AC 180 ms
54,300 KB
testcase_18 AC 141 ms
54,360 KB
testcase_19 AC 171 ms
54,172 KB
testcase_20 AC 177 ms
54,344 KB
testcase_21 AC 569 ms
58,868 KB
testcase_22 AC 714 ms
59,244 KB
evil01.txt AC 625 ms
59,652 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;i++){
int e = X[i] - X[i+1];
if (e < 0) e *= -1;
if (e != 0 && e < m) {
m = e;
}
        }
        System.out.println(m==Integer.MAX_VALUE?0:m);
    }
}
0