結果

問題 No.135 とりあえず1次元の問題
ユーザー FVRChanFVRChan
提出日時 2017-09-24 16:22:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 453 bytes
コンパイル時間 2,389 ms
コンパイル使用メモリ 75,100 KB
実行使用メモリ 60,348 KB
最終ジャッジ日時 2024-11-14 07:12:24
合計ジャッジ時間 10,440 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 739 ms
60,196 KB
testcase_01 AC 144 ms
54,164 KB
testcase_02 AC 143 ms
54,284 KB
testcase_03 WA -
testcase_04 AC 154 ms
54,164 KB
testcase_05 AC 148 ms
54,304 KB
testcase_06 AC 149 ms
54,260 KB
testcase_07 AC 154 ms
54,156 KB
testcase_08 AC 151 ms
54,428 KB
testcase_09 AC 151 ms
54,484 KB
testcase_10 AC 151 ms
54,412 KB
testcase_11 AC 148 ms
54,524 KB
testcase_12 AC 165 ms
54,564 KB
testcase_13 AC 152 ms
53,984 KB
testcase_14 AC 203 ms
54,444 KB
testcase_15 AC 169 ms
54,268 KB
testcase_16 AC 203 ms
54,648 KB
testcase_17 AC 199 ms
54,488 KB
testcase_18 AC 157 ms
54,112 KB
testcase_19 AC 196 ms
54,628 KB
testcase_20 AC 200 ms
54,284 KB
testcase_21 AC 585 ms
59,996 KB
testcase_22 AC 782 ms
60,348 KB
evil01.txt AC 703 ms
59,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class Main{
	public static void main(String args[])throws Exception{
		Scanner sc=new Scanner(System.in);
		int n=Integer.parseInt(sc.nextLine());
		int are[]=new int[n];
		int min=999999999;
		for(int i=0;i<n;i++)are[i]=sc.nextInt();
		Arrays.sort(are);
		for(int i=0;i<are.length-1;i++)
			if(are[i] != are[i+1])
				min=Math.min(min,Math.abs(are[i]-are[i+1]));
		System.out.println(min);
	}
}
0