結果

問題 No.135 とりあえず1次元の問題
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-20 15:54:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 685 ms / 5,000 ms
コード長 548 bytes
コンパイル時間 2,176 ms
コンパイル使用メモリ 74,632 KB
実行使用メモリ 59,604 KB
最終ジャッジ日時 2024-11-21 10:46:37
合計ジャッジ時間 9,262 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 622 ms
59,468 KB
testcase_01 AC 126 ms
54,132 KB
testcase_02 AC 128 ms
53,872 KB
testcase_03 AC 127 ms
53,948 KB
testcase_04 AC 142 ms
54,268 KB
testcase_05 AC 145 ms
54,364 KB
testcase_06 AC 144 ms
54,404 KB
testcase_07 AC 146 ms
54,224 KB
testcase_08 AC 141 ms
54,220 KB
testcase_09 AC 142 ms
54,280 KB
testcase_10 AC 144 ms
54,176 KB
testcase_11 AC 149 ms
54,032 KB
testcase_12 AC 167 ms
54,484 KB
testcase_13 AC 140 ms
54,128 KB
testcase_14 AC 184 ms
54,336 KB
testcase_15 AC 167 ms
53,976 KB
testcase_16 AC 193 ms
54,244 KB
testcase_17 AC 190 ms
54,260 KB
testcase_18 AC 145 ms
53,896 KB
testcase_19 AC 186 ms
54,476 KB
testcase_20 AC 181 ms
54,400 KB
testcase_21 AC 533 ms
59,304 KB
testcase_22 AC 685 ms
59,604 KB
evil01.txt AC 621 ms
59,576 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);
		int n = sc.nextInt();
		int[] x = new int[n];
		int ans = 1001001001;
		for(int i = 0 ; i < n ; i++) x[i] = sc.nextInt();
		Arrays.sort(x);
		for(int i = 0 ; i < n - 1 ; i++) {
			if(Math.abs(x[i + 1] - x[i]) >= 1) {
				ans = Math.min(ans, Math.abs(x[i + 1] - x[i]));
			}
		}
		if(ans == 0 || ans == 1001001001) {
			System.out.println(0);
		} else {
			System.out.println(ans);
		}
 	}
}

0