結果

問題 No.135 とりあえず1次元の問題
ユーザー k_kadorak_kadora
提出日時 2015-06-11 01:02:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 554 bytes
コンパイル時間 3,759 ms
コンパイル使用メモリ 75,716 KB
実行使用メモリ 59,960 KB
最終ジャッジ日時 2024-06-11 02:10:48
合計ジャッジ時間 10,771 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 591 ms
59,796 KB
testcase_01 AC 137 ms
54,036 KB
testcase_02 AC 135 ms
53,880 KB
testcase_03 WA -
testcase_04 AC 142 ms
54,160 KB
testcase_05 AC 143 ms
54,228 KB
testcase_06 AC 144 ms
53,848 KB
testcase_07 AC 146 ms
54,140 KB
testcase_08 AC 150 ms
53,784 KB
testcase_09 AC 150 ms
54,192 KB
testcase_10 AC 146 ms
54,056 KB
testcase_11 AC 147 ms
54,084 KB
testcase_12 AC 162 ms
53,980 KB
testcase_13 AC 141 ms
54,140 KB
testcase_14 AC 186 ms
54,212 KB
testcase_15 AC 164 ms
54,264 KB
testcase_16 AC 187 ms
54,452 KB
testcase_17 AC 192 ms
54,572 KB
testcase_18 AC 148 ms
53,928 KB
testcase_19 AC 183 ms
54,464 KB
testcase_20 AC 194 ms
54,492 KB
testcase_21 AC 585 ms
59,396 KB
testcase_22 AC 595 ms
59,960 KB
evil01.txt AC 598 ms
59,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;
public class Dim1{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int n,res=100001;
		n = sc.nextInt();
		int[] a = new int[n];
		for(int i = 0;i<n;i++){
			a[i] = Integer.parseInt(sc.next());
		}
		Arrays.sort(a);
		if(a.length>1){
			if(a[0] != a[1])res = Math.abs(a[0] - a[1]);
			for(int i =0;i<n-1;i++){
				if(a[i] != a[i+1]){
					if(Math.abs(a[i] - a[i+1]) < res)res = Math.abs(a[i] - a[i+1]);
				}
			}
		}else{
			res = 0;
		}
		System.out.println(res);
	}
}
0