結果

問題 No.716 距離
ユーザー GrenacheGrenache
提出日時 2018-09-16 17:42:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 860 bytes
コンパイル時間 3,377 ms
コンパイル使用メモリ 75,236 KB
実行使用メモリ 42,808 KB
最終ジャッジ日時 2024-07-18 07:25:35
合計ジャッジ時間 11,487 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 186 ms
42,304 KB
testcase_01 AC 181 ms
42,192 KB
testcase_02 AC 182 ms
42,808 KB
testcase_03 AC 182 ms
42,332 KB
testcase_04 AC 184 ms
42,784 KB
testcase_05 AC 182 ms
42,228 KB
testcase_06 AC 188 ms
42,544 KB
testcase_07 AC 113 ms
40,240 KB
testcase_08 AC 125 ms
41,264 KB
testcase_09 AC 128 ms
41,444 KB
testcase_10 AC 184 ms
42,472 KB
testcase_11 AC 168 ms
42,112 KB
testcase_12 AC 187 ms
42,604 KB
testcase_13 AC 179 ms
41,916 KB
testcase_14 AC 129 ms
41,520 KB
testcase_15 AC 183 ms
42,512 KB
testcase_16 AC 177 ms
42,224 KB
testcase_17 AC 192 ms
42,460 KB
testcase_18 AC 141 ms
41,700 KB
testcase_19 AC 173 ms
42,296 KB
testcase_20 AC 117 ms
40,452 KB
testcase_21 AC 142 ms
41,520 KB
testcase_22 AC 158 ms
41,780 KB
testcase_23 AC 145 ms
41,640 KB
testcase_24 AC 183 ms
42,116 KB
testcase_25 AC 167 ms
42,000 KB
testcase_26 AC 182 ms
41,992 KB
testcase_27 AC 185 ms
42,196 KB
testcase_28 AC 138 ms
41,376 KB
testcase_29 AC 187 ms
42,240 KB
testcase_30 AC 179 ms
41,936 KB
testcase_31 AC 186 ms
42,168 KB
testcase_32 AC 184 ms
42,300 KB
testcase_33 AC 175 ms
42,248 KB
testcase_34 AC 179 ms
42,104 KB
testcase_35 AC 132 ms
41,692 KB
testcase_36 AC 148 ms
41,884 KB
testcase_37 AC 122 ms
40,368 KB
testcase_38 AC 161 ms
41,812 KB
testcase_39 AC 183 ms
42,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder716 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();
		
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}

		int min = Integer.MAX_VALUE;
		for (int i = 1; i < n; i++) {
			min = Math.min(min, a[i] - a[i - 1]);
		}
		
		pr.println(min);
		pr.println(a[n - 1] - a[0]);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(INPUT == null ? System.in : new ByteArrayInputStream(INPUT.getBytes()));
		pr = new Printer(System.out);

		solve();

//		pr.close();
		pr.flush();
//		sc.close();
	}

	static String INPUT = null;

	private static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0