結果

問題 No.135 とりあえず1次元の問題
ユーザー yagi2yagi2
提出日時 2017-04-24 19:09:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 649 ms / 5,000 ms
コード長 746 bytes
コンパイル時間 2,317 ms
コンパイル使用メモリ 76,220 KB
実行使用メモリ 62,408 KB
最終ジャッジ日時 2024-09-13 12:05:15
合計ジャッジ時間 9,379 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 649 ms
62,004 KB
testcase_01 AC 126 ms
53,912 KB
testcase_02 AC 113 ms
52,960 KB
testcase_03 AC 125 ms
54,088 KB
testcase_04 AC 133 ms
53,844 KB
testcase_05 AC 137 ms
54,008 KB
testcase_06 AC 134 ms
53,944 KB
testcase_07 AC 135 ms
54,036 KB
testcase_08 AC 135 ms
54,428 KB
testcase_09 AC 137 ms
53,780 KB
testcase_10 AC 136 ms
53,916 KB
testcase_11 AC 134 ms
54,112 KB
testcase_12 AC 158 ms
54,224 KB
testcase_13 AC 136 ms
54,080 KB
testcase_14 AC 175 ms
54,248 KB
testcase_15 AC 146 ms
54,316 KB
testcase_16 AC 162 ms
54,316 KB
testcase_17 AC 162 ms
54,484 KB
testcase_18 AC 133 ms
53,932 KB
testcase_19 AC 174 ms
53,968 KB
testcase_20 AC 172 ms
54,280 KB
testcase_21 AC 556 ms
61,412 KB
testcase_22 AC 604 ms
62,408 KB
evil01.txt AC 634 ms
62,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int N = Integer.parseInt(sc.next());
        List<Integer> p = new ArrayList<>();
        for (int i = 0; i < N; i++) {
            p.add(Integer.parseInt(sc.next()));
        }

        int d = Integer.MAX_VALUE;
        Collections.sort(p);
        for(int i = 0; i < N - 1; i++) {
            if (Math.abs(p.get(i) - p.get(i+1)) == 0) continue;
            if (d > Math.abs(p.get(i) - p.get(i+1))) d = Math.abs(p.get(i) - p.get(i+1));
        }
        System.out.println((d == Integer.MAX_VALUE)? "0" : d);
    }
}
0