結果

問題 No.135 とりあえず1次元の問題
ユーザー rf141rf141
提出日時 2015-08-10 03:58:46
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 607 bytes
コンパイル時間 3,905 ms
コンパイル使用メモリ 76,900 KB
実行使用メモリ 49,640 KB
最終ジャッジ日時 2025-01-03 07:22:00
合計ジャッジ時間 10,721 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 567 ms
49,268 KB
testcase_01 AC 116 ms
41,328 KB
testcase_02 AC 118 ms
41,560 KB
testcase_03 AC 119 ms
41,856 KB
testcase_04 AC 122 ms
41,456 KB
testcase_05 AC 123 ms
42,072 KB
testcase_06 AC 125 ms
42,008 KB
testcase_07 AC 135 ms
41,940 KB
testcase_08 AC 125 ms
41,960 KB
testcase_09 AC 128 ms
42,060 KB
testcase_10 AC 129 ms
41,968 KB
testcase_11 AC 134 ms
41,804 KB
testcase_12 AC 136 ms
42,192 KB
testcase_13 AC 127 ms
41,928 KB
testcase_14 AC 185 ms
44,224 KB
testcase_15 AC 156 ms
42,840 KB
testcase_16 AC 206 ms
44,904 KB
testcase_17 AC 190 ms
44,404 KB
testcase_18 AC 141 ms
41,856 KB
testcase_19 AC 189 ms
44,544 KB
testcase_20 AC 188 ms
44,192 KB
testcase_21 WA -
testcase_22 AC 594 ms
49,640 KB
evil01.txt AC 559 ms
49,456 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;
		int x=0;
		for(int i = 1; i < n-1; i++){
			if(point[i]!=point[i+1]){
				x = Math.abs(point[i]-point[i+1]);
				min = Math.min(x,min);
			}
		}
		return (min==1000001)?0:min;
	}
}
0