結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 592 ms
48,500 KB
testcase_01 AC 107 ms
39,884 KB
testcase_02 WA -
testcase_03 AC 106 ms
41,164 KB
testcase_04 AC 122 ms
41,260 KB
testcase_05 AC 118 ms
41,244 KB
testcase_06 AC 120 ms
41,104 KB
testcase_07 AC 118 ms
41,180 KB
testcase_08 AC 122 ms
41,164 KB
testcase_09 AC 114 ms
41,420 KB
testcase_10 AC 112 ms
41,368 KB
testcase_11 AC 116 ms
41,164 KB
testcase_12 AC 144 ms
41,772 KB
testcase_13 AC 118 ms
41,672 KB
testcase_14 AC 159 ms
42,280 KB
testcase_15 AC 146 ms
41,548 KB
testcase_16 AC 165 ms
42,336 KB
testcase_17 AC 156 ms
42,144 KB
testcase_18 AC 116 ms
41,396 KB
testcase_19 AC 148 ms
41,880 KB
testcase_20 AC 153 ms
41,884 KB
testcase_21 AC 459 ms
48,180 KB
testcase_22 AC 497 ms
48,668 KB
evil01.txt AC 551 ms
48,708 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 = point[1]-point[0];
		if(n==2)return min;
		for(int i = 1; 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