結果

問題 No.135 とりあえず1次元の問題
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-02-21 22:36:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 725 ms / 5,000 ms
コード長 912 bytes
コンパイル時間 2,341 ms
コンパイル使用メモリ 75,284 KB
実行使用メモリ 48,924 KB
最終ジャッジ日時 2024-11-13 22:32:15
合計ジャッジ時間 10,283 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 725 ms
48,924 KB
testcase_01 AC 136 ms
41,616 KB
testcase_02 AC 136 ms
41,316 KB
testcase_03 AC 136 ms
41,636 KB
testcase_04 AC 144 ms
41,580 KB
testcase_05 AC 146 ms
41,788 KB
testcase_06 AC 145 ms
41,448 KB
testcase_07 AC 145 ms
41,524 KB
testcase_08 AC 146 ms
41,604 KB
testcase_09 AC 145 ms
41,616 KB
testcase_10 AC 148 ms
41,460 KB
testcase_11 AC 144 ms
41,484 KB
testcase_12 AC 173 ms
41,832 KB
testcase_13 AC 148 ms
41,628 KB
testcase_14 AC 196 ms
42,268 KB
testcase_15 AC 163 ms
41,872 KB
testcase_16 AC 197 ms
42,244 KB
testcase_17 AC 198 ms
42,120 KB
testcase_18 AC 152 ms
41,480 KB
testcase_19 AC 196 ms
41,988 KB
testcase_20 AC 189 ms
42,112 KB
testcase_21 AC 598 ms
48,524 KB
testcase_22 AC 705 ms
48,552 KB
evil01.txt AC 676 ms
48,984 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]));
                } else {
                    continue;
                }
            }

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

        in.close();
    }
}
0