結果

問題 No.135 とりあえず1次元の問題
ユーザー 練習生練習生
提出日時 2015-08-19 13:14:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 580 ms / 5,000 ms
コード長 579 bytes
コンパイル時間 3,022 ms
コンパイル使用メモリ 75,748 KB
実行使用メモリ 48,652 KB
最終ジャッジ日時 2024-06-11 03:04:11
合計ジャッジ時間 8,908 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 580 ms
48,536 KB
testcase_01 AC 105 ms
41,328 KB
testcase_02 AC 109 ms
41,280 KB
testcase_03 AC 98 ms
40,232 KB
testcase_04 AC 120 ms
41,480 KB
testcase_05 AC 121 ms
41,552 KB
testcase_06 AC 115 ms
41,200 KB
testcase_07 AC 116 ms
41,536 KB
testcase_08 AC 118 ms
41,152 KB
testcase_09 AC 115 ms
41,096 KB
testcase_10 AC 120 ms
41,592 KB
testcase_11 AC 121 ms
41,648 KB
testcase_12 AC 144 ms
41,716 KB
testcase_13 AC 119 ms
41,264 KB
testcase_14 AC 146 ms
42,096 KB
testcase_15 AC 127 ms
41,660 KB
testcase_16 AC 156 ms
42,192 KB
testcase_17 AC 153 ms
42,320 KB
testcase_18 AC 117 ms
41,496 KB
testcase_19 AC 151 ms
42,068 KB
testcase_20 AC 151 ms
42,380 KB
testcase_21 AC 468 ms
48,416 KB
testcase_22 AC 561 ms
48,652 KB
evil01.txt AC 552 ms
48,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class No135 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] x = new int[n];
		// 全ての地点を配列に格納
		for(int i = 0; i < n; i++){
			x[i] = sc.nextInt();
		}
		sc.close();
		// 地点を昇順にソート
		Arrays.sort(x);
		int min = 9999999;
		for(int i = 0; i < (n - 1); i++){
			if((x[i] != x[i + 1]) && (x[i + 1] - x[i]) < min){
				min = x[i + 1] - x[i];
			}
		}
		if(min == 9999999){
			min = 0;
		}
		System.out.println(min);
	}
}
0