結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 719 ms
48,608 KB
testcase_01 AC 145 ms
41,388 KB
testcase_02 WA -
testcase_03 AC 143 ms
41,424 KB
testcase_04 AC 154 ms
41,752 KB
testcase_05 AC 153 ms
41,912 KB
testcase_06 AC 149 ms
41,624 KB
testcase_07 AC 153 ms
41,368 KB
testcase_08 AC 145 ms
41,540 KB
testcase_09 AC 146 ms
41,656 KB
testcase_10 AC 154 ms
41,380 KB
testcase_11 AC 147 ms
41,780 KB
testcase_12 AC 176 ms
41,640 KB
testcase_13 AC 150 ms
41,584 KB
testcase_14 AC 200 ms
42,556 KB
testcase_15 AC 182 ms
41,916 KB
testcase_16 AC 210 ms
42,056 KB
testcase_17 AC 188 ms
42,616 KB
testcase_18 AC 145 ms
41,372 KB
testcase_19 AC 195 ms
42,296 KB
testcase_20 AC 182 ms
42,324 KB
testcase_21 WA -
testcase_22 AC 760 ms
48,324 KB
evil01.txt AC 665 ms
48,696 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 = X[N-1];
        for(int i=1; i<N; i++){
            int temp = X[i]-X[i-1];
            if(temp!=0 && min>temp){
                min = temp;
            }
        }
        if( min!=X[N-1] ){
            System.out.println(min);
        }else{
            System.out.println(0);
        }
    }
}
0