結果

問題 No.716 距離
ユーザー 37zigen37zigen
提出日時 2018-07-27 22:40:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 2,055 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 43,048 KB
最終ジャッジ日時 2024-07-05 02:50:09
合計ジャッジ時間 11,766 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 219 ms
42,708 KB
testcase_01 AC 219 ms
42,596 KB
testcase_02 AC 233 ms
42,792 KB
testcase_03 AC 224 ms
42,884 KB
testcase_04 AC 229 ms
43,048 KB
testcase_05 AC 221 ms
42,596 KB
testcase_06 AC 213 ms
42,768 KB
testcase_07 AC 127 ms
41,688 KB
testcase_08 AC 129 ms
41,292 KB
testcase_09 AC 128 ms
41,404 KB
testcase_10 AC 220 ms
42,692 KB
testcase_11 AC 201 ms
41,980 KB
testcase_12 AC 221 ms
43,036 KB
testcase_13 AC 214 ms
42,752 KB
testcase_14 AC 129 ms
41,336 KB
testcase_15 AC 229 ms
42,592 KB
testcase_16 AC 208 ms
41,952 KB
testcase_17 AC 228 ms
42,500 KB
testcase_18 AC 145 ms
41,620 KB
testcase_19 AC 194 ms
42,020 KB
testcase_20 AC 137 ms
41,040 KB
testcase_21 AC 146 ms
41,420 KB
testcase_22 AC 158 ms
42,100 KB
testcase_23 AC 176 ms
41,500 KB
testcase_24 AC 250 ms
42,712 KB
testcase_25 AC 212 ms
41,872 KB
testcase_26 AC 250 ms
42,368 KB
testcase_27 AC 210 ms
42,456 KB
testcase_28 AC 138 ms
41,816 KB
testcase_29 AC 214 ms
42,200 KB
testcase_30 AC 198 ms
42,424 KB
testcase_31 AC 220 ms
42,276 KB
testcase_32 AC 210 ms
42,296 KB
testcase_33 AC 206 ms
42,244 KB
testcase_34 AC 201 ms
42,304 KB
testcase_35 AC 135 ms
41,136 KB
testcase_36 AC 147 ms
41,756 KB
testcase_37 AC 133 ms
41,284 KB
testcase_38 AC 175 ms
41,820 KB
testcase_39 AC 217 ms
42,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] a = new int[N];
		for (int i = 0; i < N; ++i) {
			a[i] = sc.nextInt();
		}
		long min = Long.MAX_VALUE / 3, max = -Long.MAX_VALUE / 3;
		for (int i = 0; i < N; ++i) {
			for (int j = 0; j < N; ++j) {
				if (i == j)
					continue;
				min = Math.min(min, Math.abs(a[i] - a[j]));
				max = Math.max(max, Math.abs(a[i] - a[j]));
			}
		}
		System.out.println(min);
		System.out.println(max);
	}
}
0