結果

問題 No.135 とりあえず1次元の問題
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-31 22:43:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 856 ms / 5,000 ms
コード長 725 bytes
コンパイル時間 3,627 ms
コンパイル使用メモリ 75,752 KB
実行使用メモリ 57,704 KB
最終ジャッジ日時 2024-11-22 11:14:57
合計ジャッジ時間 12,136 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 787 ms
57,704 KB
testcase_01 AC 138 ms
41,488 KB
testcase_02 AC 138 ms
41,376 KB
testcase_03 AC 138 ms
41,492 KB
testcase_04 AC 150 ms
41,580 KB
testcase_05 AC 150 ms
41,400 KB
testcase_06 AC 152 ms
41,736 KB
testcase_07 AC 152 ms
41,472 KB
testcase_08 AC 148 ms
41,584 KB
testcase_09 AC 152 ms
41,392 KB
testcase_10 AC 152 ms
41,328 KB
testcase_11 AC 150 ms
41,628 KB
testcase_12 AC 172 ms
41,816 KB
testcase_13 AC 154 ms
41,852 KB
testcase_14 AC 196 ms
42,552 KB
testcase_15 AC 171 ms
41,784 KB
testcase_16 AC 208 ms
42,448 KB
testcase_17 AC 208 ms
42,608 KB
testcase_18 AC 156 ms
41,632 KB
testcase_19 AC 206 ms
42,472 KB
testcase_20 AC 193 ms
42,144 KB
testcase_21 AC 620 ms
49,428 KB
testcase_22 AC 856 ms
54,264 KB
evil01.txt AC 756 ms
53,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class No135 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        int count = s.nextInt();
        int[] pos = new int[count];
        for (int i = 0; i < count; i++) {
            pos[i] = s.nextInt();
        }
        pos = Arrays.stream(pos).distinct().sorted().toArray();
        if (pos.length < 2) {
            System.out.println(0);
            return;
        }
        int min = Integer.MAX_VALUE;
        for (int i = 1; i < pos.length; i++) {
            int tmp = pos[i] - pos[i - 1];
            if (min > tmp) {
                min = tmp;
            }
        }
        System.out.println(min);
    }
}
0