結果

問題 No.135 とりあえず1次元の問題
ユーザー dazydazy
提出日時 2016-09-14 06:14:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 700 ms / 5,000 ms
コード長 576 bytes
コンパイル時間 3,255 ms
コンパイル使用メモリ 76,408 KB
実行使用メモリ 51,040 KB
最終ジャッジ日時 2024-06-11 06:58:12
合計ジャッジ時間 10,161 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 693 ms
51,040 KB
testcase_01 AC 105 ms
40,072 KB
testcase_02 AC 119 ms
41,136 KB
testcase_03 AC 102 ms
39,984 KB
testcase_04 AC 131 ms
41,320 KB
testcase_05 AC 136 ms
41,476 KB
testcase_06 AC 130 ms
41,196 KB
testcase_07 AC 127 ms
41,348 KB
testcase_08 AC 126 ms
41,472 KB
testcase_09 AC 128 ms
41,128 KB
testcase_10 AC 132 ms
41,188 KB
testcase_11 AC 125 ms
41,384 KB
testcase_12 AC 143 ms
41,452 KB
testcase_13 AC 126 ms
41,176 KB
testcase_14 AC 174 ms
41,808 KB
testcase_15 AC 164 ms
41,652 KB
testcase_16 AC 172 ms
42,176 KB
testcase_17 AC 168 ms
42,008 KB
testcase_18 AC 130 ms
41,392 KB
testcase_19 AC 165 ms
41,952 KB
testcase_20 AC 169 ms
42,004 KB
testcase_21 AC 540 ms
50,284 KB
testcase_22 AC 700 ms
50,888 KB
evil01.txt AC 604 ms
51,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        ArrayList<Integer> X = new ArrayList<>();
        for (int i = 0; i < N; i++) {
            X.add(scan.nextInt());
        }
        Collections.sort(X);
        int min = X.get(1) - X.get(0);
        int tmp;
        for (int i = 1; i < N - 1; i++) {
            tmp = X.get(i+1) - X.get(i);
            if (tmp!=0 && (min==0 || tmp < min)) min = tmp;
        }
        System.out.println(min);
    }
}
0