結果

問題 No.135 とりあえず1次元の問題
ユーザー YatsukuYatsuku
提出日時 2015-12-12 00:29:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 619 bytes
コンパイル時間 2,007 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 59,504 KB
最終ジャッジ日時 2024-06-11 05:00:08
合計ジャッジ時間 8,558 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 634 ms
59,228 KB
testcase_01 AC 110 ms
52,852 KB
testcase_02 AC 133 ms
53,820 KB
testcase_03 WA -
testcase_04 AC 131 ms
53,864 KB
testcase_05 AC 129 ms
54,368 KB
testcase_06 AC 125 ms
53,960 KB
testcase_07 AC 124 ms
54,612 KB
testcase_08 AC 132 ms
54,096 KB
testcase_09 AC 134 ms
54,100 KB
testcase_10 AC 146 ms
54,216 KB
testcase_11 AC 130 ms
53,952 KB
testcase_12 AC 153 ms
54,204 KB
testcase_13 AC 128 ms
54,120 KB
testcase_14 AC 179 ms
53,996 KB
testcase_15 AC 153 ms
53,972 KB
testcase_16 AC 171 ms
54,100 KB
testcase_17 AC 170 ms
54,280 KB
testcase_18 AC 133 ms
54,204 KB
testcase_19 AC 166 ms
54,352 KB
testcase_20 AC 166 ms
53,868 KB
testcase_21 WA -
testcase_22 AC 528 ms
59,504 KB
evil01.txt AC 544 ms
59,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;

class No_135 {
	public static void main(String args[]) {

		Scanner stdIn = new Scanner(System.in);		

		int num = stdIn.nextInt();

		int x_axis[] = new int[num];

		for (int i = 0; i < num; i++) {
			x_axis[i]	= stdIn.nextInt();
		}

		Arrays.sort(x_axis);

		int min = 10000000;
		int tmp;
		for (int j = 0; j <= num - 2; j++) {
			if ( x_axis[j] == x_axis[j+1]) { continue; }
			tmp = Math.abs(x_axis[j] - x_axis[j+1]);	
			if ( tmp <= min ) { min = tmp; }
		}

		if ( min == 1000000 ) {
			System.out.println(0);
		} else {
			System.out.println(min);
		}

	}
}
0