結果

問題 No.716 距離
ユーザー yui556yui556
提出日時 2018-08-24 16:41:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 592 bytes
コンパイル時間 3,138 ms
コンパイル使用メモリ 74,656 KB
実行使用メモリ 56,400 KB
最終ジャッジ日時 2024-06-22 11:51:06
合計ジャッジ時間 10,636 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 184 ms
54,644 KB
testcase_01 AC 172 ms
54,588 KB
testcase_02 AC 187 ms
54,548 KB
testcase_03 AC 176 ms
54,496 KB
testcase_04 AC 176 ms
54,716 KB
testcase_05 AC 180 ms
54,400 KB
testcase_06 AC 183 ms
54,744 KB
testcase_07 AC 105 ms
53,052 KB
testcase_08 AC 101 ms
52,760 KB
testcase_09 AC 109 ms
52,856 KB
testcase_10 AC 182 ms
54,468 KB
testcase_11 AC 145 ms
53,984 KB
testcase_12 AC 187 ms
54,524 KB
testcase_13 AC 178 ms
54,672 KB
testcase_14 AC 101 ms
52,896 KB
testcase_15 AC 174 ms
54,768 KB
testcase_16 AC 164 ms
54,400 KB
testcase_17 AC 174 ms
54,688 KB
testcase_18 AC 121 ms
54,200 KB
testcase_19 AC 163 ms
56,400 KB
testcase_20 AC 100 ms
52,528 KB
testcase_21 AC 125 ms
54,360 KB
testcase_22 AC 139 ms
54,136 KB
testcase_23 AC 128 ms
54,236 KB
testcase_24 AC 176 ms
54,320 KB
testcase_25 AC 149 ms
54,212 KB
testcase_26 AC 174 ms
54,528 KB
testcase_27 AC 172 ms
54,836 KB
testcase_28 AC 126 ms
53,984 KB
testcase_29 AC 167 ms
54,456 KB
testcase_30 AC 167 ms
54,584 KB
testcase_31 AC 170 ms
54,564 KB
testcase_32 AC 175 ms
54,712 KB
testcase_33 AC 173 ms
54,472 KB
testcase_34 AC 176 ms
54,536 KB
testcase_35 AC 110 ms
52,960 KB
testcase_36 AC 130 ms
54,340 KB
testcase_37 AC 120 ms
53,860 KB
testcase_38 AC 157 ms
54,460 KB
testcase_39 AC 169 ms
54,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class N0_716 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		final int N = sc.nextInt();
		int[] aa = new int[N];
		for (int i = 0; i < N; i++) {
			aa[i] = sc.nextInt();
		}
		Arrays.sort(aa);
		int max = 0;
		int min = aa[1] - aa[0];

		for(int i = 0; i < aa.length; i++)
			for(int y = i+1; y < aa.length; y++) {
				if(aa[y] - aa[i] > max)
					max = aa[y] - aa[i];
				else if(aa[y] - aa[i] < min)
					min = aa[y] - aa[i];
			}

		System.out.println(min);
		System.out.println(max);

	}

}
0