結果

問題 No.135 とりあえず1次元の問題
ユーザー spaciaspacia
提出日時 2015-12-23 14:09:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 640 bytes
コンパイル時間 1,906 ms
コンパイル使用メモリ 75,712 KB
実行使用メモリ 50,152 KB
最終ジャッジ日時 2024-06-11 05:03:26
合計ジャッジ時間 4,934 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 236 ms
49,600 KB
testcase_01 AC 49 ms
37,008 KB
testcase_02 AC 52 ms
37,008 KB
testcase_03 WA -
testcase_04 AC 51 ms
36,760 KB
testcase_05 AC 52 ms
37,008 KB
testcase_06 AC 50 ms
37,008 KB
testcase_07 AC 50 ms
36,664 KB
testcase_08 AC 51 ms
37,100 KB
testcase_09 AC 51 ms
37,052 KB
testcase_10 AC 51 ms
36,664 KB
testcase_11 AC 52 ms
36,664 KB
testcase_12 AC 55 ms
36,716 KB
testcase_13 AC 54 ms
37,172 KB
testcase_14 AC 53 ms
37,164 KB
testcase_15 AC 50 ms
37,176 KB
testcase_16 AC 53 ms
37,308 KB
testcase_17 AC 53 ms
37,088 KB
testcase_18 AC 50 ms
37,164 KB
testcase_19 AC 53 ms
36,804 KB
testcase_20 AC 54 ms
37,000 KB
testcase_21 AC 205 ms
48,932 KB
testcase_22 AC 249 ms
49,104 KB
evil01.txt AC 233 ms
49,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main135 {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		String[] line = br.readLine().split(" ");
		int[] nums = new int[n];
		for (int i = 0; i < n; i++) nums[i] = Integer.parseInt(line[i]);
		
		int ans = Integer.MAX_VALUE;
		Arrays.sort(nums);
		for (int i = 1; i < n; i++) {
			int sub = nums[i] - nums[i - 1];
			if (sub != 0 && sub < ans) ans = sub;
		}
		
		out(ans);
		
	}
}
0