結果

問題 No.135 とりあえず1次元の問題
ユーザー abcabc
提出日時 2016-11-08 02:49:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 621 ms / 5,000 ms
コード長 763 bytes
コンパイル時間 2,602 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 48,540 KB
最終ジャッジ日時 2024-06-11 07:04:01
合計ジャッジ時間 7,891 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 540 ms
48,540 KB
testcase_01 AC 110 ms
41,068 KB
testcase_02 AC 110 ms
41,244 KB
testcase_03 AC 98 ms
40,020 KB
testcase_04 AC 118 ms
41,424 KB
testcase_05 AC 118 ms
41,556 KB
testcase_06 AC 115 ms
40,940 KB
testcase_07 AC 112 ms
41,244 KB
testcase_08 AC 113 ms
41,244 KB
testcase_09 AC 116 ms
41,388 KB
testcase_10 AC 117 ms
41,176 KB
testcase_11 AC 116 ms
41,268 KB
testcase_12 AC 140 ms
41,912 KB
testcase_13 AC 122 ms
41,520 KB
testcase_14 AC 163 ms
42,420 KB
testcase_15 AC 145 ms
41,668 KB
testcase_16 AC 152 ms
42,128 KB
testcase_17 AC 176 ms
42,020 KB
testcase_18 AC 115 ms
40,596 KB
testcase_19 AC 154 ms
42,000 KB
testcase_20 AC 153 ms
41,900 KB
testcase_21 AC 490 ms
48,068 KB
testcase_22 AC 621 ms
48,448 KB
evil01.txt AC 545 ms
48,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        if (n == 0) {
            System.out.println(0);
            return;
        }

        int[] x = new int[n];

        for (int i = 0; i < n; i++) {
            x[i] = sc.nextInt();
        }

        Arrays.sort(x);

        if (x[0] == x[n-1]) {
            System.out.println(0);
            return;
        }
        int min = Integer.MAX_VALUE;

        for (int i = 0; i < n - 1; i++) {

            if (0 < (x[i + 1] - x[i])) {

                min = Math.min(min, x[i + 1] - x[i]);

            }

        }

        System.out.println(min);

    }

}
0