結果

問題 No.135 とりあえず1次元の問題
ユーザー tentententen
提出日時 2020-11-10 16:19:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 591 bytes
コンパイル時間 2,298 ms
コンパイル使用メモリ 75,624 KB
実行使用メモリ 57,900 KB
最終ジャッジ日時 2024-07-22 17:33:45
合計ジャッジ時間 10,711 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 897 ms
57,900 KB
testcase_01 AC 116 ms
40,072 KB
testcase_02 AC 135 ms
41,460 KB
testcase_03 WA -
testcase_04 AC 145 ms
41,468 KB
testcase_05 AC 145 ms
41,728 KB
testcase_06 AC 148 ms
41,352 KB
testcase_07 AC 143 ms
41,476 KB
testcase_08 AC 152 ms
41,500 KB
testcase_09 AC 146 ms
41,624 KB
testcase_10 AC 148 ms
41,456 KB
testcase_11 AC 144 ms
41,496 KB
testcase_12 AC 163 ms
41,688 KB
testcase_13 AC 138 ms
41,324 KB
testcase_14 AC 195 ms
42,820 KB
testcase_15 AC 172 ms
41,664 KB
testcase_16 AC 200 ms
42,516 KB
testcase_17 AC 193 ms
42,320 KB
testcase_18 AC 152 ms
41,752 KB
testcase_19 AC 188 ms
42,624 KB
testcase_20 AC 193 ms
42,144 KB
testcase_21 AC 576 ms
48,728 KB
testcase_22 AC 915 ms
57,544 KB
evil01.txt AC 744 ms
55,344 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() == 0) {
            System.out.println(0);
        }
        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