結果

問題 No.135 とりあえず1次元の問題
ユーザー spaciaspacia
提出日時 2015-12-29 15:24:05
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 757 bytes
コンパイル時間 2,583 ms
コンパイル使用メモリ 76,428 KB
実行使用メモリ 64,564 KB
最終ジャッジ日時 2024-06-11 05:07:59
合計ジャッジ時間 15,096 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 50 ms
50,044 KB
testcase_02 AC 49 ms
50,128 KB
testcase_03 AC 50 ms
50,132 KB
testcase_04 AC 50 ms
50,160 KB
testcase_05 AC 50 ms
50,124 KB
testcase_06 AC 50 ms
50,224 KB
testcase_07 AC 50 ms
50,164 KB
testcase_08 AC 48 ms
50,192 KB
testcase_09 AC 51 ms
50,116 KB
testcase_10 AC 49 ms
52,144 KB
testcase_11 AC 48 ms
50,284 KB
testcase_12 AC 54 ms
50,200 KB
testcase_13 AC 49 ms
50,116 KB
testcase_14 AC 92 ms
51,988 KB
testcase_15 AC 54 ms
50,272 KB
testcase_16 AC 97 ms
52,076 KB
testcase_17 AC 87 ms
51,548 KB
testcase_18 AC 49 ms
50,172 KB
testcase_19 AC 73 ms
52,044 KB
testcase_20 AC 77 ms
51,052 KB
testcase_21 AC 194 ms
60,328 KB
testcase_22 TLE -
evil01.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main135 {
	
	public static void out (Object out) {
		System.out.println(out);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int ans = Integer.MAX_VALUE;
		int n = Integer.parseInt(br.readLine());
		String[] line = br.readLine().split(" ");
		ArrayList<Integer> list = new ArrayList<Integer>();
		
		for (int i = 0; i < n; i++) {
			int m = Integer.parseInt(line[i]);
			if (!list.contains(m)) list.add(m);
		}
		Collections.sort(list);
		
		for (int i = 1; i < list.size(); i++) {
			ans = Math.min(ans , list.get(i) - list.get(i - 1));
		}
		
		out(list.size() == 1 ? 0 : ans);
		
	}
}
0