結果

問題 No.716 距離
ユーザー tsunabittsunabit
提出日時 2018-07-29 15:01:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 611 bytes
コンパイル時間 4,129 ms
コンパイル使用メモリ 79,096 KB
実行使用メモリ 56,868 KB
最終ジャッジ日時 2024-07-17 23:05:36
合計ジャッジ時間 14,113 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 235 ms
54,940 KB
testcase_01 AC 229 ms
55,056 KB
testcase_02 AC 238 ms
55,748 KB
testcase_03 AC 242 ms
56,052 KB
testcase_04 AC 243 ms
54,944 KB
testcase_05 AC 239 ms
56,472 KB
testcase_06 AC 233 ms
56,056 KB
testcase_07 AC 161 ms
55,112 KB
testcase_08 AC 165 ms
55,044 KB
testcase_09 AC 162 ms
54,792 KB
testcase_10 AC 211 ms
54,944 KB
testcase_11 AC 205 ms
55,132 KB
testcase_12 AC 234 ms
55,948 KB
testcase_13 AC 221 ms
54,848 KB
testcase_14 AC 166 ms
54,848 KB
testcase_15 AC 234 ms
54,964 KB
testcase_16 AC 221 ms
54,624 KB
testcase_17 AC 228 ms
55,084 KB
testcase_18 AC 173 ms
55,004 KB
testcase_19 AC 211 ms
54,776 KB
testcase_20 AC 169 ms
54,972 KB
testcase_21 AC 175 ms
55,092 KB
testcase_22 AC 195 ms
54,816 KB
testcase_23 AC 172 ms
54,956 KB
testcase_24 AC 229 ms
55,608 KB
testcase_25 AC 199 ms
55,172 KB
testcase_26 AC 232 ms
56,868 KB
testcase_27 AC 240 ms
55,080 KB
testcase_28 AC 183 ms
55,008 KB
testcase_29 AC 227 ms
56,636 KB
testcase_30 AC 234 ms
56,280 KB
testcase_31 AC 229 ms
56,168 KB
testcase_32 AC 233 ms
54,900 KB
testcase_33 AC 234 ms
55,308 KB
testcase_34 AC 232 ms
56,376 KB
testcase_35 AC 178 ms
55,028 KB
testcase_36 AC 194 ms
55,200 KB
testcase_37 AC 182 ms
54,820 KB
testcase_38 AC 213 ms
55,012 KB
testcase_39 AC 239 ms
56,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

public class No716 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
        int pre = sc.nextInt();
        int sai = pre; 
        int sin = 0;
        int min = Integer.MAX_VALUE;
        for(int i = 1; i < n; i++) {
            sin  = sc.nextInt();
            if(Math.abs(sin - pre) < min) {
                min = Math.abs(sin - pre);
            }
            pre = sin;
        }
        System.out.println(min + "\n" + (pre - sai));
	}
}
0