結果

問題 No.135 とりあえず1次元の問題
ユーザー 37zigen
提出日時 2016-03-30 14:49:35
言語 Java
(openjdk 23)
結果
AC  
実行時間 535 ms / 5,000 ms
コード長 634 bytes
コンパイル時間 2,406 ms
コンパイル使用メモリ 76,916 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2025-01-03 14:31:25
合計ジャッジ時間 8,532 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder135;
import java.util.Arrays;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
//		PriorityQueue<Integer> pq=new PriorityQueue(n);
		int[] pq=new int[n];
		for(int i=0;i<n;i++){
			pq[i]=sc.nextInt();
			}
		Arrays.sort(pq);
		int minInterbal=999999999;
		for(int i=0;i<n-1;i++){
			if(pq[i]==pq[i+1])continue;
			int interbal=Math.abs(pq[i]-pq[i+1]);
			minInterbal=Math.min(minInterbal, interbal);
		}
		if(minInterbal==999999999){
			System.out.println(0);
		}else{
			System.out.println(minInterbal);
		}
		
		
	}
}
0