結果

問題 No.716 距離
ユーザー GodNegotoGodNegoto
提出日時 2019-11-20 16:48:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 3,528 ms
コンパイル使用メモリ 74,908 KB
実行使用メモリ 42,644 KB
最終ジャッジ日時 2024-10-06 21:37:48
合計ジャッジ時間 11,576 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 187 ms
42,496 KB
testcase_01 AC 192 ms
42,644 KB
testcase_02 AC 185 ms
42,432 KB
testcase_03 AC 184 ms
42,560 KB
testcase_04 AC 185 ms
42,312 KB
testcase_05 AC 179 ms
42,420 KB
testcase_06 AC 192 ms
42,328 KB
testcase_07 AC 130 ms
40,988 KB
testcase_08 AC 132 ms
41,400 KB
testcase_09 AC 131 ms
40,916 KB
testcase_10 AC 181 ms
42,600 KB
testcase_11 AC 176 ms
41,808 KB
testcase_12 AC 191 ms
42,348 KB
testcase_13 AC 189 ms
42,088 KB
testcase_14 AC 120 ms
40,156 KB
testcase_15 AC 191 ms
42,304 KB
testcase_16 AC 175 ms
41,980 KB
testcase_17 AC 192 ms
42,400 KB
testcase_18 AC 142 ms
41,244 KB
testcase_19 AC 180 ms
41,528 KB
testcase_20 AC 135 ms
41,332 KB
testcase_21 AC 148 ms
41,432 KB
testcase_22 AC 151 ms
41,376 KB
testcase_23 AC 139 ms
41,160 KB
testcase_24 AC 188 ms
42,136 KB
testcase_25 AC 181 ms
41,832 KB
testcase_26 AC 178 ms
41,724 KB
testcase_27 AC 174 ms
42,396 KB
testcase_28 AC 141 ms
41,392 KB
testcase_29 AC 185 ms
42,256 KB
testcase_30 AC 178 ms
41,964 KB
testcase_31 AC 180 ms
42,292 KB
testcase_32 AC 188 ms
41,920 KB
testcase_33 AC 174 ms
41,884 KB
testcase_34 AC 185 ms
41,756 KB
testcase_35 AC 137 ms
41,288 KB
testcase_36 AC 150 ms
41,320 KB
testcase_37 AC 141 ms
41,504 KB
testcase_38 AC 163 ms
41,484 KB
testcase_39 AC 178 ms
41,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.ArrayList;
import java.util.Scanner;

import java.util.*;

public class sample7 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		List<Integer> list = new ArrayList<Integer>();
		
		for(int i=0; i < N; i++) {
			list.add(sc.nextInt());
		}
		
		
		int min = Math.abs(list.get(0) - list.get(1));
		for(int i=1; i < N - 1; i++) {
			min = Math.min(min, Math.abs(list.get(i) - list.get(i+1)));
		}
		System.out.println(min);
		System.out.println(list.get(N - 1) - list.get(0));
	}
}
0