結果

問題 No.135 とりあえず1次元の問題
ユーザー r.suzukir.suzuki
提出日時 2016-01-02 21:43:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 803 bytes
コンパイル時間 3,353 ms
コンパイル使用メモリ 77,196 KB
実行使用メモリ 63,932 KB
最終ジャッジ日時 2024-06-11 05:08:10
合計ジャッジ時間 10,192 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 693 ms
63,360 KB
testcase_01 AC 106 ms
40,580 KB
testcase_02 AC 107 ms
41,044 KB
testcase_03 WA -
testcase_04 AC 119 ms
41,292 KB
testcase_05 AC 129 ms
41,764 KB
testcase_06 AC 118 ms
41,156 KB
testcase_07 AC 115 ms
41,216 KB
testcase_08 AC 114 ms
41,052 KB
testcase_09 AC 112 ms
41,032 KB
testcase_10 AC 123 ms
41,372 KB
testcase_11 AC 126 ms
42,096 KB
testcase_12 AC 156 ms
42,132 KB
testcase_13 AC 129 ms
41,888 KB
testcase_14 AC 178 ms
42,312 KB
testcase_15 AC 137 ms
41,804 KB
testcase_16 AC 166 ms
42,404 KB
testcase_17 AC 160 ms
42,660 KB
testcase_18 AC 126 ms
41,536 KB
testcase_19 AC 162 ms
42,200 KB
testcase_20 AC 154 ms
42,460 KB
testcase_21 AC 521 ms
63,932 KB
testcase_22 AC 704 ms
63,504 KB
evil01.txt AC 604 ms
63,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class No_166 {
	static int shortestDistance(ArrayList list, int i1, int i2, int m) {
		int num1 = (int) list.get(i1);
		int num2 = (int) list.get(i2);
		int min = m;
		if (num1 != num2) {
			min = Math.min(m, Math.abs(num1 - num2));
		}
		if (i2 >= list.size() - 1) {
			return min;
		} else {
			return shortestDistance(list, ++i1, ++i2, min);
		}
	}

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		ArrayList<Integer> list = new ArrayList<Integer>();
		int n = sc.nextInt();

		for (int i = 0; i < n; i++) {
			list.add(sc.nextInt());
		}

		Collections.sort(list);
		int ans = shortestDistance(list, 0, 1, Integer.MAX_VALUE);
		System.out.println(ans);
		sc.close();

	}

}
0