結果

問題 No.716 距離
ユーザー YamaKasaYamaKasa
提出日時 2018-07-27 22:25:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 2,312 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 54,644 KB
最終ジャッジ日時 2024-07-05 01:19:38
合計ジャッジ時間 9,887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 189 ms
54,548 KB
testcase_01 AC 186 ms
54,264 KB
testcase_02 AC 182 ms
54,588 KB
testcase_03 AC 181 ms
54,428 KB
testcase_04 AC 188 ms
54,148 KB
testcase_05 AC 187 ms
54,228 KB
testcase_06 AC 186 ms
54,388 KB
testcase_07 AC 129 ms
54,108 KB
testcase_08 AC 128 ms
54,132 KB
testcase_09 AC 128 ms
54,000 KB
testcase_10 AC 186 ms
54,312 KB
testcase_11 AC 156 ms
54,372 KB
testcase_12 AC 184 ms
54,156 KB
testcase_13 AC 188 ms
54,216 KB
testcase_14 AC 128 ms
54,104 KB
testcase_15 AC 189 ms
54,388 KB
testcase_16 AC 178 ms
54,436 KB
testcase_17 AC 191 ms
54,644 KB
testcase_18 AC 142 ms
53,924 KB
testcase_19 AC 174 ms
54,184 KB
testcase_20 AC 134 ms
53,816 KB
testcase_21 AC 144 ms
54,188 KB
testcase_22 AC 152 ms
54,160 KB
testcase_23 AC 139 ms
53,968 KB
testcase_24 AC 173 ms
54,344 KB
testcase_25 AC 165 ms
54,236 KB
testcase_26 AC 181 ms
54,020 KB
testcase_27 AC 186 ms
54,328 KB
testcase_28 AC 139 ms
53,896 KB
testcase_29 AC 178 ms
54,424 KB
testcase_30 AC 180 ms
54,188 KB
testcase_31 AC 177 ms
54,428 KB
testcase_32 AC 169 ms
54,260 KB
testcase_33 AC 184 ms
54,156 KB
testcase_34 AC 175 ms
54,240 KB
testcase_35 AC 134 ms
53,868 KB
testcase_36 AC 145 ms
53,892 KB
testcase_37 AC 137 ms
54,112 KB
testcase_38 AC 174 ms
53,984 KB
testcase_39 AC 182 ms
54,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int []a = new int[N];
		for(int i = 0; i < N; i++) {
			a[i] = scan.nextInt();
		}
		scan.close();

		int max = a[N - 1] - a[0];
		int min = Integer.MAX_VALUE;
		for(int i = 0; i < N - 1; i++) {
			if(min > a[i + 1] - a[i]) {
				min = a[i + 1] - a[i];
			}
		}
		System.out.println(min);
		System.out.println(max);
	}
}
0