結果

問題 No.135 とりあえず1次元の問題
ユーザー dazydazy
提出日時 2016-09-14 06:11:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 574 bytes
コンパイル時間 3,191 ms
コンパイル使用メモリ 76,524 KB
実行使用メモリ 50,824 KB
最終ジャッジ日時 2024-06-11 06:58:00
合計ジャッジ時間 9,597 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 677 ms
50,824 KB
testcase_01 AC 114 ms
41,240 KB
testcase_02 WA -
testcase_03 AC 109 ms
40,872 KB
testcase_04 WA -
testcase_05 AC 120 ms
41,268 KB
testcase_06 AC 121 ms
41,232 KB
testcase_07 AC 116 ms
41,008 KB
testcase_08 AC 116 ms
40,988 KB
testcase_09 WA -
testcase_10 AC 120 ms
41,400 KB
testcase_11 AC 120 ms
41,256 KB
testcase_12 AC 140 ms
41,320 KB
testcase_13 AC 121 ms
41,124 KB
testcase_14 AC 164 ms
42,500 KB
testcase_15 AC 135 ms
41,468 KB
testcase_16 WA -
testcase_17 AC 178 ms
41,836 KB
testcase_18 AC 118 ms
41,244 KB
testcase_19 AC 154 ms
41,852 KB
testcase_20 AC 150 ms
41,780 KB
testcase_21 WA -
testcase_22 AC 567 ms
50,780 KB
evil01.txt AC 585 ms
50,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        ArrayList<Integer> X = new ArrayList<>();
        for (int i = 0; i < N; i++) {
            X.add(scan.nextInt());
        }
        Collections.sort(X);
        int min = X.get(1) - X.get(0);
        int tmp;
        for (int i = 1; i < N - 1; i++) {
            tmp = X.get(i+1) - X.get(i);
            if (min==0 && tmp!=0 || tmp < min) min = tmp;
        }
        System.out.println(min);
    }
}
0