結果

問題 No.135 とりあえず1次元の問題
ユーザー rf141rf141
提出日時 2015-08-10 03:58:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 607 bytes
コンパイル時間 3,084 ms
コンパイル使用メモリ 75,100 KB
実行使用メモリ 48,792 KB
最終ジャッジ日時 2024-06-11 03:01:35
合計ジャッジ時間 9,430 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 551 ms
48,760 KB
testcase_01 AC 105 ms
41,536 KB
testcase_02 AC 105 ms
41,316 KB
testcase_03 AC 107 ms
41,152 KB
testcase_04 AC 114 ms
41,428 KB
testcase_05 AC 121 ms
41,116 KB
testcase_06 AC 125 ms
41,456 KB
testcase_07 AC 116 ms
41,348 KB
testcase_08 AC 116 ms
41,496 KB
testcase_09 AC 125 ms
41,596 KB
testcase_10 AC 115 ms
41,276 KB
testcase_11 AC 115 ms
41,240 KB
testcase_12 AC 138 ms
41,440 KB
testcase_13 AC 122 ms
41,820 KB
testcase_14 AC 150 ms
42,232 KB
testcase_15 AC 143 ms
41,808 KB
testcase_16 AC 165 ms
42,284 KB
testcase_17 AC 161 ms
42,268 KB
testcase_18 AC 121 ms
41,164 KB
testcase_19 AC 155 ms
42,320 KB
testcase_20 AC 155 ms
42,220 KB
testcase_21 WA -
testcase_22 AC 673 ms
48,792 KB
evil01.txt AC 550 ms
48,492 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