結果

問題 No.135 とりあえず1次元の問題
ユーザー shinwisteriashinwisteria
提出日時 2018-03-04 11:46:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 731 ms / 5,000 ms
コード長 647 bytes
コンパイル時間 3,281 ms
コンパイル使用メモリ 77,316 KB
実行使用メモリ 67,760 KB
最終ジャッジ日時 2024-07-07 03:54:37
合計ジャッジ時間 10,033 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 731 ms
67,724 KB
testcase_01 AC 99 ms
52,596 KB
testcase_02 AC 107 ms
53,744 KB
testcase_03 AC 119 ms
53,700 KB
testcase_04 AC 119 ms
54,112 KB
testcase_05 AC 130 ms
53,996 KB
testcase_06 AC 123 ms
53,864 KB
testcase_07 AC 126 ms
54,076 KB
testcase_08 AC 123 ms
54,108 KB
testcase_09 AC 122 ms
53,928 KB
testcase_10 AC 116 ms
54,256 KB
testcase_11 AC 134 ms
54,380 KB
testcase_12 AC 166 ms
54,412 KB
testcase_13 AC 127 ms
53,964 KB
testcase_14 AC 167 ms
54,596 KB
testcase_15 AC 154 ms
54,304 KB
testcase_16 AC 174 ms
54,648 KB
testcase_17 AC 175 ms
54,252 KB
testcase_18 AC 128 ms
54,180 KB
testcase_19 AC 163 ms
54,500 KB
testcase_20 AC 168 ms
54,372 KB
testcase_21 AC 475 ms
59,040 KB
testcase_22 AC 710 ms
67,760 KB
evil01.txt AC 615 ms
67,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
import java.util.TreeSet;
public class Con135 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		TreeSet<Integer> x = new TreeSet<>();
		for(int i = 0;i < N;i++){
			x.add(s.nextInt());
		}
		s.close();

		int from = x.pollFirst() , to = 0;
		if(x.size() == 0){
			System.out.println("0");
		}else{
			int dmin = Math.abs(x.last() - from) , size = x.size();
			for(int i = 0;i < size;i++){
				to = x.pollFirst();
				if(dmin > Math.abs(to - from)){
					dmin = Math.abs(to - from);
				}
				from = to;
			}
			System.out.println(dmin);
		}
	}

}
0