結果

問題 No.135 とりあえず1次元の問題
ユーザー samplelpmassamplelpmas
提出日時 2016-11-08 03:15:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 687 ms / 5,000 ms
コード長 837 bytes
コンパイル時間 2,090 ms
コンパイル使用メモリ 74,840 KB
実行使用メモリ 50,492 KB
最終ジャッジ日時 2024-06-11 07:05:54
合計ジャッジ時間 8,940 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 676 ms
50,492 KB
testcase_01 AC 118 ms
41,332 KB
testcase_02 AC 101 ms
40,196 KB
testcase_03 AC 111 ms
41,256 KB
testcase_04 AC 127 ms
41,096 KB
testcase_05 AC 126 ms
41,344 KB
testcase_06 AC 128 ms
41,380 KB
testcase_07 AC 125 ms
41,628 KB
testcase_08 AC 121 ms
41,740 KB
testcase_09 AC 123 ms
41,552 KB
testcase_10 AC 125 ms
41,792 KB
testcase_11 AC 123 ms
41,124 KB
testcase_12 AC 148 ms
41,516 KB
testcase_13 AC 139 ms
41,248 KB
testcase_14 AC 166 ms
42,488 KB
testcase_15 AC 148 ms
41,636 KB
testcase_16 AC 172 ms
42,132 KB
testcase_17 AC 173 ms
42,700 KB
testcase_18 AC 127 ms
41,616 KB
testcase_19 AC 183 ms
42,248 KB
testcase_20 AC 180 ms
42,008 KB
testcase_21 AC 524 ms
49,764 KB
testcase_22 AC 687 ms
50,292 KB
evil01.txt AC 617 ms
50,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int numCoordinates = sc.nextInt();

        Integer[]  coordinatesX = new Integer[numCoordinates];

        for (int i = 0; i < numCoordinates; i++) {
            coordinatesX[i] = sc.nextInt();
        }

        Arrays.sort(coordinatesX);

        int distanceMin = Integer.MAX_VALUE;

        for (int i = 0; i < numCoordinates - 1; i++) {

            if (0 < (coordinatesX[i + 1] - coordinatesX[i])) {
                distanceMin = Math.min(distanceMin, coordinatesX[i + 1] - coordinatesX[i]);
            }

        }

        if (distanceMin == Integer.MAX_VALUE) {
            distanceMin = 0;
        }

        System.out.println(distanceMin);

    }

}
0