結果

問題 No.135 とりあえず1次元の問題
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 22:55:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 580 ms / 5,000 ms
コード長 617 bytes
コンパイル時間 2,131 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 48,604 KB
最終ジャッジ日時 2024-06-11 07:07:41
合計ジャッジ時間 8,118 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 580 ms
48,604 KB
testcase_01 AC 107 ms
40,104 KB
testcase_02 AC 101 ms
40,312 KB
testcase_03 AC 108 ms
41,376 KB
testcase_04 AC 116 ms
41,220 KB
testcase_05 AC 124 ms
41,480 KB
testcase_06 AC 116 ms
41,260 KB
testcase_07 AC 116 ms
41,044 KB
testcase_08 AC 119 ms
41,096 KB
testcase_09 AC 115 ms
41,228 KB
testcase_10 AC 117 ms
41,280 KB
testcase_11 AC 118 ms
41,524 KB
testcase_12 AC 148 ms
41,900 KB
testcase_13 AC 119 ms
41,532 KB
testcase_14 AC 157 ms
42,372 KB
testcase_15 AC 131 ms
41,352 KB
testcase_16 AC 168 ms
42,452 KB
testcase_17 AC 159 ms
42,020 KB
testcase_18 AC 121 ms
41,592 KB
testcase_19 AC 158 ms
42,148 KB
testcase_20 AC 152 ms
41,836 KB
testcase_21 AC 498 ms
48,100 KB
testcase_22 AC 473 ms
48,496 KB
evil01.txt AC 554 ms
48,460 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 t = X[i]-X[i-1];
            if(t!=0){
                min=Math.min(min,t);
            }
        }
        if(min==Integer.MAX_VALUE){
            System.out.println(0);
        }else{
            System.out.println(min);
        }
    }
}
0