結果

問題 No.135 とりあえず1次元の問題
ユーザー rf141rf141
提出日時 2015-08-10 03:56:18
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 630 bytes
コンパイル時間 4,251 ms
コンパイル使用メモリ 76,620 KB
実行使用メモリ 61,244 KB
最終ジャッジ日時 2025-01-03 07:19:53
合計ジャッジ時間 11,657 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 702 ms
60,480 KB
testcase_01 AC 138 ms
54,360 KB
testcase_02 AC 133 ms
54,400 KB
testcase_03 AC 134 ms
41,400 KB
testcase_04 AC 148 ms
41,968 KB
testcase_05 AC 145 ms
41,800 KB
testcase_06 AC 150 ms
41,984 KB
testcase_07 AC 149 ms
41,984 KB
testcase_08 AC 147 ms
41,560 KB
testcase_09 AC 158 ms
41,560 KB
testcase_10 AC 144 ms
41,564 KB
testcase_11 AC 144 ms
41,836 KB
testcase_12 AC 157 ms
42,204 KB
testcase_13 AC 151 ms
41,848 KB
testcase_14 AC 214 ms
44,792 KB
testcase_15 AC 178 ms
43,256 KB
testcase_16 AC 215 ms
44,708 KB
testcase_17 AC 216 ms
44,748 KB
testcase_18 AC 150 ms
41,948 KB
testcase_19 AC 207 ms
44,748 KB
testcase_20 AC 206 ms
44,756 KB
testcase_21 WA -
testcase_22 AC 675 ms
50,244 KB
evil01.txt AC 634 ms
50,072 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 = 1000001;
		for(int i = 1; i < n-1; i++){
			if(point[i]!=point[i+1]){
				if(point[i+1]-point[i] < min && point[i+1]-point[i] > 0){
					min = point[i+1]-point[i];
				}
			}
		}
		return (min==1000001)?0:min;
	}
}
0