結果

問題 No.135 とりあえず1次元の問題
ユーザー samplelpmassamplelpmas
提出日時 2016-11-08 03:07:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 825 ms / 5,000 ms
コード長 660 bytes
コンパイル時間 2,280 ms
コンパイル使用メモリ 75,308 KB
実行使用メモリ 50,888 KB
最終ジャッジ日時 2024-06-11 07:05:40
合計ジャッジ時間 10,070 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 825 ms
50,496 KB
testcase_01 AC 139 ms
41,488 KB
testcase_02 AC 135 ms
41,104 KB
testcase_03 AC 132 ms
41,248 KB
testcase_04 AC 151 ms
41,388 KB
testcase_05 AC 145 ms
41,784 KB
testcase_06 AC 146 ms
41,160 KB
testcase_07 AC 154 ms
41,380 KB
testcase_08 AC 148 ms
41,296 KB
testcase_09 AC 147 ms
41,208 KB
testcase_10 AC 157 ms
41,296 KB
testcase_11 AC 140 ms
41,300 KB
testcase_12 AC 171 ms
41,804 KB
testcase_13 AC 149 ms
41,496 KB
testcase_14 AC 193 ms
42,168 KB
testcase_15 AC 170 ms
41,824 KB
testcase_16 AC 196 ms
42,864 KB
testcase_17 AC 192 ms
42,548 KB
testcase_18 AC 148 ms
41,436 KB
testcase_19 AC 190 ms
42,196 KB
testcase_20 AC 186 ms
42,096 KB
testcase_21 AC 603 ms
50,888 KB
testcase_22 AC 811 ms
50,244 KB
evil01.txt AC 722 ms
50,424 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();

        Integer[] x = new Integer[n];

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

        Arrays.sort(x);

        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]);

            }

        }

        if (min == Integer.MAX_VALUE) {
            min = 0;
        }

        System.out.println(min);

    }

}
0