結果

問題 No.716 距離
ユーザー tentententen
提出日時 2020-12-09 09:08:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 3,763 ms
コンパイル使用メモリ 78,452 KB
実行使用メモリ 42,688 KB
最終ジャッジ日時 2024-09-19 01:02:57
合計ジャッジ時間 9,789 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
42,100 KB
testcase_01 AC 164 ms
42,352 KB
testcase_02 AC 170 ms
42,368 KB
testcase_03 AC 160 ms
42,644 KB
testcase_04 AC 165 ms
42,628 KB
testcase_05 AC 184 ms
42,688 KB
testcase_06 AC 177 ms
42,480 KB
testcase_07 AC 132 ms
41,260 KB
testcase_08 AC 107 ms
41,332 KB
testcase_09 AC 100 ms
40,032 KB
testcase_10 AC 166 ms
42,556 KB
testcase_11 AC 150 ms
41,692 KB
testcase_12 AC 154 ms
42,608 KB
testcase_13 AC 160 ms
41,972 KB
testcase_14 AC 106 ms
39,912 KB
testcase_15 AC 166 ms
42,292 KB
testcase_16 AC 165 ms
41,832 KB
testcase_17 AC 161 ms
42,152 KB
testcase_18 AC 126 ms
41,280 KB
testcase_19 AC 149 ms
41,792 KB
testcase_20 AC 105 ms
41,408 KB
testcase_21 AC 119 ms
41,620 KB
testcase_22 AC 139 ms
41,920 KB
testcase_23 AC 123 ms
41,832 KB
testcase_24 AC 158 ms
42,524 KB
testcase_25 AC 154 ms
41,832 KB
testcase_26 AC 153 ms
41,832 KB
testcase_27 AC 161 ms
42,036 KB
testcase_28 AC 122 ms
41,216 KB
testcase_29 AC 163 ms
41,984 KB
testcase_30 AC 160 ms
41,724 KB
testcase_31 AC 163 ms
42,172 KB
testcase_32 AC 166 ms
42,124 KB
testcase_33 AC 165 ms
42,272 KB
testcase_34 AC 148 ms
41,916 KB
testcase_35 AC 120 ms
41,336 KB
testcase_36 AC 128 ms
41,376 KB
testcase_37 AC 122 ms
41,056 KB
testcase_38 AC 165 ms
41,472 KB
testcase_39 AC 172 ms
42,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int max = 0;
        int min = Integer.MAX_VALUE;
        int prev = sc.nextInt();
        int first = prev;
        for (int i = 1; i < n; i++) {
            int cur = sc.nextInt();
            min = Math.min(min, cur - prev);
            max = cur - first;
            prev = cur;
        }
        System.out.println(min);
        System.out.println(max);
    }
}
0