結果

問題 No.135 とりあえず1次元の問題
ユーザー r.suzukir.suzuki
提出日時 2016-01-02 21:53:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 687 ms / 5,000 ms
コード長 851 bytes
コンパイル時間 3,255 ms
コンパイル使用メモリ 79,576 KB
実行使用メモリ 64,740 KB
最終ジャッジ日時 2024-06-11 05:13:13
合計ジャッジ時間 9,758 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 658 ms
63,444 KB
testcase_01 AC 101 ms
41,368 KB
testcase_02 AC 111 ms
41,492 KB
testcase_03 AC 109 ms
41,660 KB
testcase_04 AC 125 ms
41,148 KB
testcase_05 AC 131 ms
41,844 KB
testcase_06 AC 122 ms
41,740 KB
testcase_07 AC 127 ms
41,432 KB
testcase_08 AC 126 ms
41,544 KB
testcase_09 AC 130 ms
41,140 KB
testcase_10 AC 121 ms
41,352 KB
testcase_11 AC 119 ms
41,312 KB
testcase_12 AC 145 ms
42,008 KB
testcase_13 AC 120 ms
41,644 KB
testcase_14 AC 171 ms
42,348 KB
testcase_15 AC 151 ms
41,548 KB
testcase_16 AC 165 ms
42,172 KB
testcase_17 AC 167 ms
42,296 KB
testcase_18 AC 128 ms
41,420 KB
testcase_19 AC 161 ms
42,160 KB
testcase_20 AC 157 ms
42,032 KB
testcase_21 AC 495 ms
64,740 KB
testcase_22 AC 687 ms
63,320 KB
evil01.txt AC 555 ms
63,680 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);
		if(ans == Integer.MAX_VALUE){
			ans = 0;
		}
		System.out.println(ans);
		sc.close();

	}

}
0