結果

問題 No.135 とりあえず1次元の問題
ユーザー spaciaspacia
提出日時 2015-12-23 14:11:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 653 bytes
コンパイル時間 2,550 ms
コンパイル使用メモリ 76,080 KB
実行使用メモリ 60,880 KB
最終ジャッジ日時 2024-06-11 05:03:43
合計ジャッジ時間 4,834 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 242 ms
60,488 KB
testcase_01 AC 50 ms
50,076 KB
testcase_02 AC 50 ms
49,848 KB
testcase_03 WA -
testcase_04 AC 49 ms
50,220 KB
testcase_05 AC 48 ms
50,084 KB
testcase_06 AC 49 ms
49,980 KB
testcase_07 AC 51 ms
50,212 KB
testcase_08 AC 52 ms
50,160 KB
testcase_09 AC 52 ms
50,244 KB
testcase_10 AC 50 ms
50,240 KB
testcase_11 AC 49 ms
50,180 KB
testcase_12 AC 52 ms
50,300 KB
testcase_13 AC 51 ms
50,060 KB
testcase_14 AC 53 ms
50,296 KB
testcase_15 AC 50 ms
49,992 KB
testcase_16 AC 55 ms
50,020 KB
testcase_17 AC 67 ms
50,240 KB
testcase_18 AC 54 ms
50,284 KB
testcase_19 AC 55 ms
50,312 KB
testcase_20 AC 53 ms
50,072 KB
testcase_21 AC 211 ms
60,184 KB
testcase_22 AC 232 ms
60,880 KB
evil01.txt AC 233 ms
60,528 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(n == 1 ? 0 : ans);
		
	}
}
0