結果

問題 No.135 とりあえず1次元の問題
ユーザー atkrymatkrym
提出日時 2016-10-24 12:22:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 654 ms / 5,000 ms
コード長 663 bytes
コンパイル時間 2,493 ms
コンパイル使用メモリ 76,148 KB
実行使用メモリ 51,036 KB
最終ジャッジ日時 2024-06-11 07:02:36
合計ジャッジ時間 8,943 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 654 ms
51,036 KB
testcase_01 AC 103 ms
40,056 KB
testcase_02 AC 111 ms
41,068 KB
testcase_03 AC 118 ms
40,788 KB
testcase_04 AC 124 ms
41,252 KB
testcase_05 AC 117 ms
40,920 KB
testcase_06 AC 121 ms
41,368 KB
testcase_07 AC 125 ms
41,468 KB
testcase_08 AC 124 ms
41,636 KB
testcase_09 AC 129 ms
41,160 KB
testcase_10 AC 120 ms
41,356 KB
testcase_11 AC 123 ms
41,368 KB
testcase_12 AC 136 ms
41,372 KB
testcase_13 AC 134 ms
41,904 KB
testcase_14 AC 162 ms
42,160 KB
testcase_15 AC 148 ms
41,740 KB
testcase_16 AC 166 ms
42,140 KB
testcase_17 AC 164 ms
42,452 KB
testcase_18 AC 120 ms
41,508 KB
testcase_19 AC 158 ms
41,796 KB
testcase_20 AC 163 ms
42,004 KB
testcase_21 AC 508 ms
50,448 KB
testcase_22 AC 589 ms
50,828 KB
evil01.txt AC 586 ms
50,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        List<Integer> list = new ArrayList<>();
        int n = sc.nextInt();
        for (int i = 0;i < n;i++) {
            list.add(sc.nextInt());
        }
        Collections.sort(list);
        int ret = Integer.MAX_VALUE;
        int abs;
        for (int i = 1;i < n;i++) {
            abs = Math.abs(list.get(i)-list.get(i-1));
            if (abs != 0) ret = Math.min(ret, abs);
        }
        ret = ret==Integer.MAX_VALUE?0:ret;
        System.out.println(ret);
    }
}
0