結果

問題 No.716 距離
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-02-19 17:41:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 787 bytes
コンパイル時間 2,292 ms
コンパイル使用メモリ 76,956 KB
実行使用メモリ 54,936 KB
最終ジャッジ日時 2024-10-12 10:46:52
合計ジャッジ時間 10,728 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 195 ms
54,600 KB
testcase_01 AC 190 ms
54,264 KB
testcase_02 AC 195 ms
54,724 KB
testcase_03 AC 191 ms
54,424 KB
testcase_04 AC 194 ms
54,800 KB
testcase_05 AC 194 ms
54,476 KB
testcase_06 AC 196 ms
54,496 KB
testcase_07 AC 132 ms
54,296 KB
testcase_08 AC 133 ms
53,980 KB
testcase_09 AC 133 ms
54,168 KB
testcase_10 AC 186 ms
54,456 KB
testcase_11 AC 181 ms
54,296 KB
testcase_12 AC 186 ms
54,356 KB
testcase_13 AC 190 ms
54,636 KB
testcase_14 AC 135 ms
54,144 KB
testcase_15 AC 194 ms
54,364 KB
testcase_16 AC 178 ms
54,580 KB
testcase_17 AC 198 ms
54,388 KB
testcase_18 AC 145 ms
54,128 KB
testcase_19 AC 184 ms
54,372 KB
testcase_20 AC 136 ms
54,048 KB
testcase_21 AC 149 ms
54,200 KB
testcase_22 AC 161 ms
54,136 KB
testcase_23 AC 146 ms
54,020 KB
testcase_24 AC 194 ms
54,436 KB
testcase_25 AC 184 ms
54,272 KB
testcase_26 AC 179 ms
54,332 KB
testcase_27 AC 185 ms
54,936 KB
testcase_28 AC 144 ms
54,328 KB
testcase_29 AC 190 ms
54,284 KB
testcase_30 AC 185 ms
54,384 KB
testcase_31 AC 188 ms
54,064 KB
testcase_32 AC 189 ms
54,596 KB
testcase_33 AC 186 ms
54,292 KB
testcase_34 AC 188 ms
54,108 KB
testcase_35 AC 140 ms
53,908 KB
testcase_36 AC 152 ms
54,180 KB
testcase_37 AC 144 ms
54,208 KB
testcase_38 AC 179 ms
54,304 KB
testcase_39 AC 187 ms
54,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

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