結果

問題 No.135 とりあえず1次元の問題
ユーザー abcabc
提出日時 2016-11-08 02:45:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 643 bytes
コンパイル時間 2,685 ms
コンパイル使用メモリ 75,192 KB
実行使用メモリ 49,064 KB
最終ジャッジ日時 2024-06-11 07:03:36
合計ジャッジ時間 10,060 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 711 ms
49,064 KB
testcase_01 AC 133 ms
41,328 KB
testcase_02 AC 134 ms
41,144 KB
testcase_03 WA -
testcase_04 AC 151 ms
41,472 KB
testcase_05 AC 153 ms
41,516 KB
testcase_06 AC 144 ms
41,464 KB
testcase_07 AC 147 ms
41,728 KB
testcase_08 AC 149 ms
41,648 KB
testcase_09 AC 146 ms
41,464 KB
testcase_10 AC 144 ms
41,368 KB
testcase_11 AC 147 ms
41,664 KB
testcase_12 AC 171 ms
41,672 KB
testcase_13 AC 149 ms
41,600 KB
testcase_14 AC 191 ms
42,076 KB
testcase_15 AC 162 ms
41,692 KB
testcase_16 AC 198 ms
42,228 KB
testcase_17 AC 185 ms
42,576 KB
testcase_18 AC 151 ms
41,296 KB
testcase_19 AC 197 ms
42,252 KB
testcase_20 AC 192 ms
42,188 KB
testcase_21 AC 562 ms
47,944 KB
testcase_22 AC 579 ms
48,200 KB
evil01.txt AC 618 ms
48,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package sample;

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();
        int[] x = new int[n];

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

        Arrays.sort(x);

        int first = x[0];
        //int i = 1;
        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