結果

問題 No.135 とりあえず1次元の問題
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 07:59:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 753 ms / 5,000 ms
コード長 629 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 48,568 KB
最終ジャッジ日時 2024-06-11 07:07:00
合計ジャッジ時間 9,889 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 689 ms
48,568 KB
testcase_01 AC 136 ms
41,536 KB
testcase_02 AC 134 ms
41,144 KB
testcase_03 AC 133 ms
41,152 KB
testcase_04 AC 150 ms
41,636 KB
testcase_05 AC 147 ms
41,780 KB
testcase_06 AC 150 ms
41,600 KB
testcase_07 AC 152 ms
41,496 KB
testcase_08 AC 148 ms
41,324 KB
testcase_09 AC 148 ms
41,692 KB
testcase_10 AC 156 ms
41,256 KB
testcase_11 AC 145 ms
41,792 KB
testcase_12 AC 171 ms
41,852 KB
testcase_13 AC 152 ms
41,424 KB
testcase_14 AC 190 ms
42,148 KB
testcase_15 AC 166 ms
41,812 KB
testcase_16 AC 190 ms
42,328 KB
testcase_17 AC 197 ms
42,412 KB
testcase_18 AC 155 ms
41,556 KB
testcase_19 AC 185 ms
42,416 KB
testcase_20 AC 194 ms
42,880 KB
testcase_21 AC 603 ms
48,300 KB
testcase_22 AC 753 ms
48,564 KB
evil01.txt AC 664 ms
48,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int [] X = new int [N];
        for(int i=0; i<N; i++){
            X[i] = sc.nextInt();
        }
        Arrays.sort(X);
        int min = Integer.MAX_VALUE;
        for(int i=1; i<N; i++){
            int temp = X[i]-X[i-1];
            if(temp!=0 && min>=temp){
                min = temp;
            }
        }
        if( min!=Integer.MAX_VALUE ){
            System.out.println(min);
        }else{
            System.out.println(0);
        }
    }
}
0