結果

問題 No.135 とりあえず1次元の問題
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 14:08:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 665 ms / 5,000 ms
コード長 513 bytes
コンパイル時間 2,193 ms
コンパイル使用メモリ 74,860 KB
実行使用メモリ 59,648 KB
最終ジャッジ日時 2024-09-13 11:23:47
合計ジャッジ時間 9,189 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 647 ms
59,648 KB
testcase_01 AC 129 ms
53,988 KB
testcase_02 AC 116 ms
52,800 KB
testcase_03 AC 116 ms
53,040 KB
testcase_04 AC 142 ms
54,188 KB
testcase_05 AC 141 ms
54,040 KB
testcase_06 AC 143 ms
54,132 KB
testcase_07 AC 142 ms
54,276 KB
testcase_08 AC 139 ms
54,108 KB
testcase_09 AC 138 ms
54,368 KB
testcase_10 AC 141 ms
54,176 KB
testcase_11 AC 138 ms
53,976 KB
testcase_12 AC 166 ms
54,332 KB
testcase_13 AC 145 ms
54,112 KB
testcase_14 AC 187 ms
54,360 KB
testcase_15 AC 159 ms
54,076 KB
testcase_16 AC 186 ms
54,352 KB
testcase_17 AC 184 ms
54,492 KB
testcase_18 AC 146 ms
53,928 KB
testcase_19 AC 182 ms
54,432 KB
testcase_20 AC 180 ms
54,356 KB
testcase_21 AC 582 ms
59,248 KB
testcase_22 AC 665 ms
59,428 KB
evil01.txt AC 607 ms
59,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int n = sc.nextInt();
		if (n == 1) {
			System.out.println(0); return;
		}
		else {
			int[] ar = new int[n];
			for (int i=0; i<n; i++) ar[i] = sc.nextInt();
			Arrays.sort(ar);
			int min = Integer.MAX_VALUE;
			for (int i=1; i<n; i++) {
				if (ar[i]-ar[i-1] != 0) {
					min = Math.min(min, ar[i]-ar[i-1]);
				}
			}
			System.out.println(min==Integer.MAX_VALUE?0:min);
		}
		
	}
}
0