結果

問題 No.135 とりあえず1次元の問題
ユーザー koukonkokoukonko
提出日時 2015-12-12 15:39:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 672 ms / 5,000 ms
コード長 713 bytes
コンパイル時間 2,837 ms
コンパイル使用メモリ 77,180 KB
実行使用メモリ 62,024 KB
最終ジャッジ日時 2024-06-11 05:01:53
合計ジャッジ時間 8,443 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 672 ms
62,024 KB
testcase_01 AC 110 ms
53,912 KB
testcase_02 AC 108 ms
53,752 KB
testcase_03 AC 100 ms
52,872 KB
testcase_04 AC 113 ms
53,480 KB
testcase_05 AC 122 ms
54,068 KB
testcase_06 AC 128 ms
53,996 KB
testcase_07 AC 122 ms
54,168 KB
testcase_08 AC 124 ms
54,388 KB
testcase_09 AC 128 ms
54,608 KB
testcase_10 AC 125 ms
54,120 KB
testcase_11 AC 118 ms
54,700 KB
testcase_12 AC 155 ms
54,096 KB
testcase_13 AC 123 ms
54,024 KB
testcase_14 AC 162 ms
54,512 KB
testcase_15 AC 149 ms
54,416 KB
testcase_16 AC 173 ms
54,908 KB
testcase_17 AC 170 ms
54,656 KB
testcase_18 AC 136 ms
54,236 KB
testcase_19 AC 159 ms
54,436 KB
testcase_20 AC 156 ms
54,780 KB
testcase_21 AC 499 ms
61,356 KB
testcase_22 AC 666 ms
61,988 KB
evil01.txt AC 565 ms
62,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {

		try {
			Scanner scan = new Scanner(System.in);
			int N = scan.nextInt();
			ArrayList<Integer> x = new ArrayList<>(N);
			int ans = Integer.MAX_VALUE;

			for (int i = 0; i < N; ++i) {
				x.add(scan.nextInt());
			}
			x.sort(null);

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

				if (!x.get(i).equals(x.get(i + 1))) {
					if (Math.abs(x.get(i) - x.get(i + 1)) < ans) {
						ans = Math.abs(x.get(i) - x.get(i + 1));
					}
				}
			}

			if (ans == Integer.MAX_VALUE) {
				ans = 0;
			}
			System.out.println(ans);

			scan.close();
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}
0