結果

問題 No.135 とりあえず1次元の問題
ユーザー Pump0129Pump0129
提出日時 2018-03-26 22:55:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 556 ms / 5,000 ms
コード長 1,115 bytes
コンパイル時間 2,950 ms
コンパイル使用メモリ 79,908 KB
実行使用メモリ 67,320 KB
最終ジャッジ日時 2024-06-25 12:13:44
合計ジャッジ時間 8,689 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 537 ms
62,348 KB
testcase_01 AC 131 ms
54,012 KB
testcase_02 AC 129 ms
54,092 KB
testcase_03 AC 130 ms
54,004 KB
testcase_04 AC 139 ms
54,348 KB
testcase_05 AC 136 ms
54,236 KB
testcase_06 AC 133 ms
54,160 KB
testcase_07 AC 136 ms
54,008 KB
testcase_08 AC 134 ms
54,316 KB
testcase_09 AC 134 ms
53,980 KB
testcase_10 AC 137 ms
54,240 KB
testcase_11 AC 133 ms
53,988 KB
testcase_12 AC 150 ms
54,260 KB
testcase_13 AC 134 ms
54,228 KB
testcase_14 AC 168 ms
54,576 KB
testcase_15 AC 132 ms
53,024 KB
testcase_16 AC 155 ms
53,788 KB
testcase_17 AC 172 ms
54,608 KB
testcase_18 AC 134 ms
54,096 KB
testcase_19 AC 169 ms
54,244 KB
testcase_20 AC 151 ms
54,348 KB
testcase_21 AC 460 ms
67,320 KB
testcase_22 AC 556 ms
62,420 KB
evil01.txt AC 538 ms
72,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no135;

import java.util.*;

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

        int cnt = Integer.parseInt(scan.nextLine());
        List<Integer> pos_list = new ArrayList<>();

        String[] lines = scan.nextLine().split(" ");

        for (int i = 0; i < cnt; i++) {
            pos_list.add(Integer.parseInt(lines[i]));
        }

        scan.close();

        pos_list = new ArrayList<>(new HashSet<>(pos_list));
        Collections.sort(pos_list);

        int min_num = -1;

        if (pos_list.size() != 1) {
            for (int i = 0; i < pos_list.size() - 1; i++) {
                if (min_num == -1){
                    min_num = pos_list.get(i + 1) - pos_list.get(i);
                }else if(pos_list.get(i + 1) - pos_list.get(i) < min_num) {
                    min_num = pos_list.get(i + 1) - pos_list.get(i);
                }
            }
            System.out.println(min_num);
        } else {
            System.out.println(0);
        }
    }
}
0