結果

問題 No.135 とりあえず1次元の問題
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-05-15 02:41:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 629 ms / 5,000 ms
コード長 427 bytes
コンパイル時間 2,073 ms
コンパイル使用メモリ 74,844 KB
実行使用メモリ 49,732 KB
最終ジャッジ日時 2024-06-11 02:06:47
合計ジャッジ時間 8,565 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 623 ms
49,600 KB
testcase_01 AC 99 ms
43,580 KB
testcase_02 AC 108 ms
44,112 KB
testcase_03 AC 109 ms
44,384 KB
testcase_04 AC 122 ms
45,040 KB
testcase_05 AC 118 ms
44,420 KB
testcase_06 AC 125 ms
44,696 KB
testcase_07 AC 120 ms
44,732 KB
testcase_08 AC 118 ms
44,572 KB
testcase_09 AC 121 ms
44,684 KB
testcase_10 AC 125 ms
44,712 KB
testcase_11 AC 137 ms
44,492 KB
testcase_12 AC 153 ms
44,896 KB
testcase_13 AC 126 ms
44,380 KB
testcase_14 AC 168 ms
45,184 KB
testcase_15 AC 148 ms
44,532 KB
testcase_16 AC 168 ms
44,684 KB
testcase_17 AC 167 ms
44,888 KB
testcase_18 AC 122 ms
44,292 KB
testcase_19 AC 167 ms
44,840 KB
testcase_20 AC 166 ms
44,792 KB
testcase_21 AC 495 ms
49,732 KB
testcase_22 AC 629 ms
49,592 KB
evil01.txt AC 512 ms
49,988 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