結果

問題 No.716 距離
ユーザー ryunocchiryunocchi
提出日時 2019-03-22 02:44:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 1,895 ms
コンパイル使用メモリ 79,492 KB
実行使用メモリ 42,736 KB
最終ジャッジ日時 2024-09-19 02:14:18
合計ジャッジ時間 9,035 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
42,416 KB
testcase_01 AC 161 ms
42,728 KB
testcase_02 AC 161 ms
42,700 KB
testcase_03 AC 161 ms
42,564 KB
testcase_04 AC 177 ms
42,432 KB
testcase_05 AC 170 ms
42,440 KB
testcase_06 AC 176 ms
42,736 KB
testcase_07 AC 117 ms
41,436 KB
testcase_08 AC 101 ms
40,320 KB
testcase_09 AC 114 ms
41,268 KB
testcase_10 AC 163 ms
42,232 KB
testcase_11 AC 156 ms
41,856 KB
testcase_12 AC 175 ms
42,460 KB
testcase_13 AC 171 ms
42,376 KB
testcase_14 AC 119 ms
41,248 KB
testcase_15 AC 169 ms
42,608 KB
testcase_16 AC 171 ms
42,096 KB
testcase_17 AC 174 ms
42,608 KB
testcase_18 AC 123 ms
41,664 KB
testcase_19 AC 166 ms
42,200 KB
testcase_20 AC 118 ms
41,296 KB
testcase_21 AC 127 ms
41,452 KB
testcase_22 AC 133 ms
41,776 KB
testcase_23 AC 127 ms
41,488 KB
testcase_24 AC 155 ms
42,164 KB
testcase_25 AC 145 ms
42,012 KB
testcase_26 AC 151 ms
41,972 KB
testcase_27 AC 152 ms
41,912 KB
testcase_28 AC 119 ms
41,476 KB
testcase_29 AC 157 ms
42,000 KB
testcase_30 AC 160 ms
42,308 KB
testcase_31 AC 177 ms
42,580 KB
testcase_32 AC 156 ms
42,208 KB
testcase_33 AC 154 ms
41,932 KB
testcase_34 AC 153 ms
41,832 KB
testcase_35 AC 119 ms
41,168 KB
testcase_36 AC 132 ms
41,704 KB
testcase_37 AC 110 ms
40,372 KB
testcase_38 AC 144 ms
41,440 KB
testcase_39 AC 162 ms
41,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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