結果

問題 No.135 とりあえず1次元の問題
ユーザー ぴろずぴろず
提出日時 2015-01-25 23:32:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 698 ms / 5,000 ms
コード長 577 bytes
コンパイル時間 2,391 ms
コンパイル使用メモリ 75,196 KB
実行使用メモリ 50,748 KB
最終ジャッジ日時 2024-06-11 00:29:48
合計ジャッジ時間 8,575 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 677 ms
50,748 KB
testcase_01 AC 114 ms
41,212 KB
testcase_02 AC 103 ms
40,284 KB
testcase_03 AC 99 ms
40,276 KB
testcase_04 AC 119 ms
41,624 KB
testcase_05 AC 120 ms
41,440 KB
testcase_06 AC 126 ms
41,184 KB
testcase_07 AC 124 ms
41,244 KB
testcase_08 AC 133 ms
41,444 KB
testcase_09 AC 135 ms
41,232 KB
testcase_10 AC 130 ms
41,256 KB
testcase_11 AC 120 ms
41,500 KB
testcase_12 AC 145 ms
41,812 KB
testcase_13 AC 122 ms
41,712 KB
testcase_14 AC 164 ms
42,520 KB
testcase_15 AC 139 ms
41,920 KB
testcase_16 AC 168 ms
42,564 KB
testcase_17 AC 166 ms
42,280 KB
testcase_18 AC 138 ms
41,572 KB
testcase_19 AC 163 ms
42,352 KB
testcase_20 AC 167 ms
42,352 KB
testcase_21 AC 525 ms
50,072 KB
testcase_22 AC 698 ms
50,480 KB
evil01.txt AC 566 ms
50,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no135;

import java.util.Arrays;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		if (n == 0) {
			System.out.println(0);
			return;
		}
		Integer[] x = new Integer[n];
		for(int i=0;i<n;i++) {
			x[i] = sc.nextInt();
		}
		Arrays.sort(x);
		if (x[0] == x[n-1]) {
			System.out.println(0);
			return;
		}
		int ans = 1 << 29;
		for(int i=0;i<n-1;i++) {
			if (x[i+1] - x[i] > 0) {
				ans = Math.min(ans, x[i+1] - x[i]);
			}
		}
		System.out.println(ans);
	}

}
0