結果

問題 No.135 とりあえず1次元の問題
ユーザー uafr_csuafr_cs
提出日時 2015-05-15 13:20:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 733 ms / 5,000 ms
コード長 671 bytes
コンパイル時間 2,661 ms
コンパイル使用メモリ 76,484 KB
実行使用メモリ 57,632 KB
最終ジャッジ日時 2024-06-11 02:07:10
合計ジャッジ時間 9,026 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 682 ms
57,632 KB
testcase_01 AC 118 ms
41,500 KB
testcase_02 AC 105 ms
40,968 KB
testcase_03 AC 110 ms
41,152 KB
testcase_04 AC 125 ms
41,796 KB
testcase_05 AC 122 ms
41,592 KB
testcase_06 AC 118 ms
41,668 KB
testcase_07 AC 134 ms
41,972 KB
testcase_08 AC 131 ms
41,904 KB
testcase_09 AC 129 ms
41,544 KB
testcase_10 AC 124 ms
41,304 KB
testcase_11 AC 120 ms
41,788 KB
testcase_12 AC 138 ms
41,884 KB
testcase_13 AC 122 ms
41,964 KB
testcase_14 AC 164 ms
42,692 KB
testcase_15 AC 140 ms
42,036 KB
testcase_16 AC 168 ms
42,564 KB
testcase_17 AC 164 ms
42,056 KB
testcase_18 AC 131 ms
42,184 KB
testcase_19 AC 169 ms
42,640 KB
testcase_20 AC 158 ms
42,244 KB
testcase_21 AC 496 ms
47,852 KB
testcase_22 AC 733 ms
56,928 KB
evil01.txt AC 604 ms
56,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.TreeSet;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		
		TreeSet<Integer> set = new TreeSet<Integer>();
		for(int i = 0; i < N; i++){
			set.add(sc.nextInt());
		}
		ArrayList<Integer> list = new ArrayList<Integer>(set);
		
		int min = Integer.MAX_VALUE;
		for(int i = 0; i < list.size() - 1; i++){
			min = Math.min(min, Math.abs(list.get(i) - list.get(i + 1)));
		}
		if(min == Integer.MAX_VALUE){
			min = 0;
		}
		
		System.out.println(min);
		
	}
}
0