結果

問題 No.135 とりあえず1次元の問題
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-02-21 22:17:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 625 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 75,144 KB
実行使用メモリ 59,336 KB
最終ジャッジ日時 2024-06-11 07:15:32
合計ジャッジ時間 10,000 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 707 ms
59,304 KB
testcase_01 AC 144 ms
53,940 KB
testcase_02 AC 143 ms
54,384 KB
testcase_03 WA -
testcase_04 AC 156 ms
54,232 KB
testcase_05 AC 149 ms
54,208 KB
testcase_06 AC 149 ms
54,240 KB
testcase_07 AC 156 ms
53,820 KB
testcase_08 AC 149 ms
54,080 KB
testcase_09 AC 148 ms
53,976 KB
testcase_10 AC 150 ms
53,984 KB
testcase_11 AC 147 ms
54,220 KB
testcase_12 AC 167 ms
54,284 KB
testcase_13 AC 147 ms
54,016 KB
testcase_14 AC 193 ms
53,976 KB
testcase_15 AC 183 ms
54,208 KB
testcase_16 AC 202 ms
54,132 KB
testcase_17 AC 194 ms
54,280 KB
testcase_18 AC 151 ms
53,948 KB
testcase_19 AC 195 ms
54,180 KB
testcase_20 AC 181 ms
54,236 KB
testcase_21 AC 595 ms
58,788 KB
testcase_22 AC 720 ms
59,336 KB
evil01.txt AC 668 ms
59,280 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);

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

        System.out.println(len);

        in.close();
    }
}
0