結果

問題 No.135 とりあえず1次元の問題
ユーザー rf141rf141
提出日時 2015-08-10 03:48:45
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 597 bytes
コンパイル時間 3,576 ms
コンパイル使用メモリ 77,052 KB
実行使用メモリ 49,808 KB
最終ジャッジ日時 2025-01-03 07:17:42
合計ジャッジ時間 10,463 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 600 ms
49,412 KB
testcase_01 AC 127 ms
41,556 KB
testcase_02 AC 124 ms
41,464 KB
testcase_03 WA -
testcase_04 AC 135 ms
41,840 KB
testcase_05 AC 128 ms
42,368 KB
testcase_06 AC 130 ms
41,908 KB
testcase_07 AC 129 ms
41,680 KB
testcase_08 AC 130 ms
41,924 KB
testcase_09 AC 133 ms
41,908 KB
testcase_10 AC 136 ms
41,856 KB
testcase_11 AC 134 ms
41,924 KB
testcase_12 AC 147 ms
42,708 KB
testcase_13 AC 143 ms
41,584 KB
testcase_14 AC 200 ms
44,708 KB
testcase_15 AC 160 ms
42,752 KB
testcase_16 AC 210 ms
44,788 KB
testcase_17 AC 200 ms
44,528 KB
testcase_18 AC 134 ms
41,856 KB
testcase_19 AC 196 ms
44,672 KB
testcase_20 AC 185 ms
44,552 KB
testcase_21 WA -
testcase_22 AC 618 ms
49,808 KB
evil01.txt AC 609 ms
49,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class liner{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		if(n==1){
			System.out.println(0);
			return;
		}
		int[] point = new int[n];
		for(int i = 0; i < n; i++){
			point[i] = scan.nextInt();
		}
		Arrays.sort(point);
		System.out.println(result(point,n));
	}
	public static int result(int[] point,int n){
		int min = 100001;
		if(n==2)return min;
		for(int i = 0; i < n-1; i++){
			if(point[i+1]-point[i] < min && point[i+1]-point[i] > 0){
				min = point[i+1]-point[i];
			}
		}
		return min;
	}
}
0