結果

問題 No.135 とりあえず1次元の問題
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-02-21 22:24:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 599 ms / 5,000 ms
コード長 858 bytes
コンパイル時間 2,712 ms
コンパイル使用メモリ 75,984 KB
実行使用メモリ 48,860 KB
最終ジャッジ日時 2024-06-11 07:17:20
合計ジャッジ時間 8,666 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 584 ms
48,860 KB
testcase_01 AC 99 ms
40,096 KB
testcase_02 AC 106 ms
41,152 KB
testcase_03 AC 106 ms
40,984 KB
testcase_04 AC 114 ms
41,188 KB
testcase_05 AC 114 ms
41,416 KB
testcase_06 AC 117 ms
41,380 KB
testcase_07 AC 119 ms
41,576 KB
testcase_08 AC 117 ms
41,540 KB
testcase_09 AC 117 ms
41,508 KB
testcase_10 AC 113 ms
41,168 KB
testcase_11 AC 114 ms
41,072 KB
testcase_12 AC 127 ms
41,196 KB
testcase_13 AC 122 ms
41,752 KB
testcase_14 AC 160 ms
42,544 KB
testcase_15 AC 135 ms
41,544 KB
testcase_16 AC 151 ms
42,220 KB
testcase_17 AC 159 ms
42,460 KB
testcase_18 AC 120 ms
41,784 KB
testcase_19 AC 149 ms
41,860 KB
testcase_20 AC 155 ms
42,492 KB
testcase_21 AC 464 ms
48,280 KB
testcase_22 AC 599 ms
48,472 KB
evil01.txt AC 520 ms
48,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int[] x = new int[n];
        for(int i=0; i<n; i++) {
            x[i] = in.nextInt();
        }
        Arrays.sort(x);

        if(n == 1) {
            System.out.println(0);
        } else {
            int len = Integer.MAX_VALUE;
            for(int i=1; i<n; i++) {
                if(x[i] != x[i-1]) {
                    len = Math.min(len, Math.abs(x[i] - x[i-1]));
                }
            }

            if(len == Integer.MAX_VALUE) {
                System.out.println(0);
            } else {
                System.out.println(len);
            }
        }

        in.close();
    }
}
0