結果

問題 No.135 とりあえず1次元の問題
ユーザー mits58mits58
提出日時 2016-05-05 15:19:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 601 ms / 5,000 ms
コード長 592 bytes
コンパイル時間 1,806 ms
コンパイル使用メモリ 74,592 KB
実行使用メモリ 48,624 KB
最終ジャッジ日時 2024-06-11 06:49:01
合計ジャッジ時間 7,822 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 553 ms
48,532 KB
testcase_01 AC 102 ms
40,060 KB
testcase_02 AC 100 ms
40,364 KB
testcase_03 AC 118 ms
41,276 KB
testcase_04 AC 116 ms
41,280 KB
testcase_05 AC 122 ms
41,712 KB
testcase_06 AC 123 ms
41,604 KB
testcase_07 AC 119 ms
41,820 KB
testcase_08 AC 119 ms
41,660 KB
testcase_09 AC 124 ms
41,808 KB
testcase_10 AC 119 ms
41,384 KB
testcase_11 AC 117 ms
41,528 KB
testcase_12 AC 146 ms
41,804 KB
testcase_13 AC 123 ms
41,860 KB
testcase_14 AC 154 ms
42,012 KB
testcase_15 AC 148 ms
41,880 KB
testcase_16 AC 147 ms
42,176 KB
testcase_17 AC 159 ms
42,304 KB
testcase_18 AC 126 ms
41,240 KB
testcase_19 AC 160 ms
42,492 KB
testcase_20 AC 160 ms
42,360 KB
testcase_21 AC 460 ms
47,776 KB
testcase_22 AC 601 ms
48,624 KB
evil01.txt AC 574 ms
48,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main{
	public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
        	int n=sc.nextInt();
        	int[] x=new int[n];
        	for(int i=0;i<n;i++) x[i]=sc.nextInt();
        	Arrays.sort(x);
        	int res=Integer.MAX_VALUE/2;
        	for(int i=1;i<n;i++){
        		if(x[i]==x[i-1]) continue;
        		res=Math.min(res, x[i]-x[i-1]);
        	}
        	if(res==Integer.MAX_VALUE/2) System.out.println(0);
        	else System.out.println(res);
        }
    }
}
0