結果

問題 No.135 とりあえず1次元の問題
ユーザー YOSHIYOSHI
提出日時 2021-03-01 21:43:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 274 ms / 5,000 ms
コード長 754 bytes
コンパイル時間 3,697 ms
コンパイル使用メモリ 79,428 KB
実行使用メモリ 50,752 KB
最終ジャッジ日時 2024-10-03 01:00:54
合計ジャッジ時間 7,658 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 274 ms
49,780 KB
testcase_01 AC 59 ms
37,708 KB
testcase_02 AC 61 ms
37,980 KB
testcase_03 AC 62 ms
37,752 KB
testcase_04 AC 63 ms
37,740 KB
testcase_05 AC 62 ms
37,736 KB
testcase_06 AC 62 ms
38,260 KB
testcase_07 AC 59 ms
38,260 KB
testcase_08 AC 59 ms
37,716 KB
testcase_09 AC 60 ms
37,720 KB
testcase_10 AC 62 ms
38,264 KB
testcase_11 AC 61 ms
37,824 KB
testcase_12 AC 61 ms
38,144 KB
testcase_13 AC 63 ms
37,864 KB
testcase_14 AC 78 ms
38,764 KB
testcase_15 AC 72 ms
37,752 KB
testcase_16 AC 70 ms
38,332 KB
testcase_17 AC 81 ms
38,284 KB
testcase_18 AC 58 ms
37,876 KB
testcase_19 AC 77 ms
38,900 KB
testcase_20 AC 78 ms
38,772 KB
testcase_21 AC 237 ms
49,660 KB
testcase_22 AC 273 ms
50,752 KB
evil01.txt AC 266 ms
50,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.stream.Stream;

public class No00000135_Main {

	public static void main(String[] args) throws IOException {

		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		int n = Integer.parseInt(br.readLine());
		int[] arr = Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
		Arrays.sort(arr);
		boolean first = true;
		int dis = 0;
		for(int i = 1; i < n; i++) {
			if(arr[i - 1] != arr[i]) {
				if(first) {
					first = false;
					dis = Math.abs(arr[i] - arr[i - 1]);
				}
				dis = Math.min(dis, Math.abs(arr[i] - arr[i - 1]));
			}
		}
		System.out.println(dis);
	}
}
0