結果

問題 No.135 とりあえず1次元の問題
ユーザー fal_rndfal_rnd
提出日時 2016-11-29 00:40:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 606 ms / 5,000 ms
コード長 462 bytes
コンパイル時間 2,575 ms
コンパイル使用メモリ 76,856 KB
実行使用メモリ 55,748 KB
最終ジャッジ日時 2024-06-11 07:08:57
合計ジャッジ時間 8,362 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 606 ms
55,324 KB
testcase_01 AC 103 ms
40,948 KB
testcase_02 AC 93 ms
40,280 KB
testcase_03 AC 106 ms
41,160 KB
testcase_04 AC 111 ms
41,004 KB
testcase_05 AC 108 ms
41,084 KB
testcase_06 AC 114 ms
41,328 KB
testcase_07 AC 120 ms
41,216 KB
testcase_08 AC 112 ms
41,008 KB
testcase_09 AC 115 ms
40,756 KB
testcase_10 AC 119 ms
41,248 KB
testcase_11 AC 121 ms
41,060 KB
testcase_12 AC 124 ms
41,152 KB
testcase_13 AC 117 ms
41,136 KB
testcase_14 AC 148 ms
41,616 KB
testcase_15 AC 131 ms
41,104 KB
testcase_16 AC 133 ms
41,780 KB
testcase_17 AC 134 ms
41,504 KB
testcase_18 AC 115 ms
41,300 KB
testcase_19 AC 134 ms
41,616 KB
testcase_20 AC 127 ms
41,112 KB
testcase_21 AC 421 ms
47,976 KB
testcase_22 AC 540 ms
55,748 KB
evil01.txt AC 554 ms
53,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class B{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		TreeSet<Integer> b = new TreeSet<Integer>();
		for(int i=Integer.parseInt(s.next());i>0;--i) {
			b.add(Integer.parseInt(s.next()));
		}
		Integer[] in = b.toArray(new Integer[0]);

		int r=Integer.MAX_VALUE;
		for(int i=0;i<in.length-1;++i) {
			r=Math.min(r, Math.abs(in[i]-in[i+1]));
		}
		System.out.println((r==Integer.MAX_VALUE)?0:r);
	}
}
0