結果

問題 No.135 とりあえず1次元の問題
ユーザー tentententen
提出日時 2020-11-10 16:21:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 738 ms / 5,000 ms
コード長 611 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 75,428 KB
実行使用メモリ 57,180 KB
最終ジャッジ日時 2024-07-22 17:33:56
合計ジャッジ時間 8,964 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 738 ms
57,180 KB
testcase_01 AC 120 ms
41,452 KB
testcase_02 AC 112 ms
41,168 KB
testcase_03 AC 118 ms
41,204 KB
testcase_04 AC 125 ms
41,728 KB
testcase_05 AC 128 ms
41,436 KB
testcase_06 AC 130 ms
41,156 KB
testcase_07 AC 123 ms
41,440 KB
testcase_08 AC 117 ms
41,620 KB
testcase_09 AC 122 ms
41,504 KB
testcase_10 AC 127 ms
41,332 KB
testcase_11 AC 120 ms
41,272 KB
testcase_12 AC 136 ms
41,508 KB
testcase_13 AC 122 ms
41,568 KB
testcase_14 AC 168 ms
42,496 KB
testcase_15 AC 138 ms
41,760 KB
testcase_16 AC 160 ms
42,020 KB
testcase_17 AC 167 ms
42,576 KB
testcase_18 AC 123 ms
41,732 KB
testcase_19 AC 174 ms
42,052 KB
testcase_20 AC 160 ms
42,232 KB
testcase_21 AC 474 ms
47,784 KB
testcase_22 AC 727 ms
56,968 KB
evil01.txt AC 603 ms
54,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        TreeSet<Integer> set = new TreeSet<>();
        for (int i = 0; i < n; i++) {
            set.add(sc.nextInt());
        }
        if (set.size() <= 1) {
            System.out.println(0);
            return;
        }
        int prev = Integer.MIN_VALUE / 10;
        int min = Integer.MAX_VALUE;
        for (int x : set) {
            min = Math.min(min, x - prev);
            prev = x;
        }
        System.out.println(min);
    }
}
0