結果

問題 No.135 とりあえず1次元の問題
ユーザー rf141rf141
提出日時 2015-08-10 03:56:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 630 bytes
コンパイル時間 5,037 ms
コンパイル使用メモリ 75,432 KB
実行使用メモリ 48,812 KB
最終ジャッジ日時 2024-06-11 02:58:25
合計ジャッジ時間 8,987 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 589 ms
48,812 KB
testcase_01 AC 106 ms
41,444 KB
testcase_02 AC 111 ms
41,288 KB
testcase_03 AC 97 ms
40,296 KB
testcase_04 AC 116 ms
41,104 KB
testcase_05 AC 117 ms
41,604 KB
testcase_06 AC 122 ms
41,584 KB
testcase_07 AC 119 ms
41,552 KB
testcase_08 AC 118 ms
41,268 KB
testcase_09 AC 116 ms
41,404 KB
testcase_10 AC 118 ms
41,468 KB
testcase_11 AC 117 ms
41,564 KB
testcase_12 AC 142 ms
41,760 KB
testcase_13 AC 122 ms
41,836 KB
testcase_14 AC 158 ms
42,384 KB
testcase_15 AC 135 ms
41,728 KB
testcase_16 AC 149 ms
42,324 KB
testcase_17 AC 155 ms
42,236 KB
testcase_18 AC 121 ms
41,676 KB
testcase_19 AC 154 ms
42,340 KB
testcase_20 AC 146 ms
41,756 KB
testcase_21 WA -
testcase_22 AC 468 ms
48,596 KB
evil01.txt AC 551 ms
48,628 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