結果

問題 No.716 距離
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 10:37:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 2,235 ms
コンパイル使用メモリ 76,308 KB
実行使用メモリ 54,664 KB
最終ジャッジ日時 2024-09-13 09:53:33
合計ジャッジ時間 10,252 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
54,664 KB
testcase_01 AC 184 ms
54,440 KB
testcase_02 AC 179 ms
54,208 KB
testcase_03 AC 181 ms
54,588 KB
testcase_04 AC 190 ms
54,568 KB
testcase_05 AC 193 ms
54,340 KB
testcase_06 AC 193 ms
54,316 KB
testcase_07 AC 116 ms
52,908 KB
testcase_08 AC 129 ms
53,884 KB
testcase_09 AC 129 ms
54,028 KB
testcase_10 AC 187 ms
54,292 KB
testcase_11 AC 172 ms
54,472 KB
testcase_12 AC 183 ms
54,436 KB
testcase_13 AC 184 ms
54,244 KB
testcase_14 AC 128 ms
54,044 KB
testcase_15 AC 181 ms
54,488 KB
testcase_16 AC 181 ms
54,352 KB
testcase_17 AC 185 ms
54,160 KB
testcase_18 AC 139 ms
54,016 KB
testcase_19 AC 164 ms
54,100 KB
testcase_20 AC 135 ms
54,228 KB
testcase_21 AC 146 ms
54,292 KB
testcase_22 AC 161 ms
54,396 KB
testcase_23 AC 139 ms
54,008 KB
testcase_24 AC 174 ms
54,316 KB
testcase_25 AC 175 ms
54,328 KB
testcase_26 AC 181 ms
54,224 KB
testcase_27 AC 172 ms
54,280 KB
testcase_28 AC 141 ms
54,296 KB
testcase_29 AC 181 ms
54,032 KB
testcase_30 AC 181 ms
54,448 KB
testcase_31 AC 187 ms
54,448 KB
testcase_32 AC 174 ms
54,408 KB
testcase_33 AC 179 ms
54,412 KB
testcase_34 AC 181 ms
54,184 KB
testcase_35 AC 135 ms
54,252 KB
testcase_36 AC 149 ms
54,056 KB
testcase_37 AC 141 ms
54,276 KB
testcase_38 AC 180 ms
54,368 KB
testcase_39 AC 176 ms
54,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int n = sc.nextInt();
		int[] ar = new int[n];
		int min = Integer.MAX_VALUE;
		for (int i=0; i<n; i++) {
			ar[i] = sc.nextInt();
			if (i > 0) {
				min = Math.min(min, Math.abs(ar[i]-ar[i-1]));
			}
		}
		Arrays.sort(ar);
		System.out.println(min);
		System.out.println(ar[n-1]-ar[0]);
		
		
	}
}
0