結果

問題 No.135 とりあえず1次元の問題
ユーザー 37zigen37zigen
提出日時 2016-03-30 14:49:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 619 ms / 5,000 ms
コード長 634 bytes
コンパイル時間 3,459 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 48,856 KB
最終ジャッジ日時 2024-06-11 06:46:05
合計ジャッジ時間 8,195 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 619 ms
48,856 KB
testcase_01 AC 116 ms
40,296 KB
testcase_02 AC 129 ms
41,444 KB
testcase_03 AC 116 ms
41,388 KB
testcase_04 AC 120 ms
41,256 KB
testcase_05 AC 118 ms
40,752 KB
testcase_06 AC 121 ms
41,728 KB
testcase_07 AC 121 ms
40,652 KB
testcase_08 AC 133 ms
41,468 KB
testcase_09 AC 132 ms
41,392 KB
testcase_10 AC 132 ms
41,256 KB
testcase_11 AC 122 ms
41,380 KB
testcase_12 AC 151 ms
41,948 KB
testcase_13 AC 125 ms
41,836 KB
testcase_14 AC 164 ms
42,568 KB
testcase_15 AC 139 ms
42,024 KB
testcase_16 AC 167 ms
42,848 KB
testcase_17 AC 160 ms
42,160 KB
testcase_18 AC 130 ms
41,748 KB
testcase_19 AC 166 ms
42,028 KB
testcase_20 AC 161 ms
42,764 KB
testcase_21 AC 495 ms
48,264 KB
testcase_22 AC 593 ms
48,624 KB
evil01.txt AC 562 ms
48,568 KB
権限があれば一括ダウンロードができます

ソースコード

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