結果

問題 No.716 距離
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-14 12:14:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 1,881 ms
コンパイル使用メモリ 73,668 KB
実行使用メモリ 42,800 KB
最終ジャッジ日時 2024-07-05 19:02:52
合計ジャッジ時間 9,371 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
41,908 KB
testcase_01 AC 172 ms
41,960 KB
testcase_02 AC 166 ms
42,344 KB
testcase_03 AC 174 ms
41,928 KB
testcase_04 AC 173 ms
42,340 KB
testcase_05 AC 176 ms
42,076 KB
testcase_06 AC 175 ms
42,800 KB
testcase_07 AC 121 ms
40,908 KB
testcase_08 AC 119 ms
39,720 KB
testcase_09 AC 124 ms
40,924 KB
testcase_10 AC 174 ms
42,412 KB
testcase_11 AC 162 ms
41,824 KB
testcase_12 AC 176 ms
42,124 KB
testcase_13 AC 173 ms
41,828 KB
testcase_14 AC 123 ms
41,000 KB
testcase_15 AC 173 ms
41,752 KB
testcase_16 AC 171 ms
42,124 KB
testcase_17 AC 177 ms
41,976 KB
testcase_18 AC 131 ms
41,564 KB
testcase_19 AC 166 ms
41,676 KB
testcase_20 AC 127 ms
41,188 KB
testcase_21 AC 134 ms
41,232 KB
testcase_22 AC 159 ms
41,144 KB
testcase_23 AC 139 ms
41,232 KB
testcase_24 AC 178 ms
42,120 KB
testcase_25 AC 168 ms
41,428 KB
testcase_26 AC 171 ms
41,584 KB
testcase_27 AC 168 ms
41,680 KB
testcase_28 AC 132 ms
41,040 KB
testcase_29 AC 168 ms
41,668 KB
testcase_30 AC 164 ms
42,128 KB
testcase_31 AC 166 ms
42,180 KB
testcase_32 AC 166 ms
41,552 KB
testcase_33 AC 172 ms
42,080 KB
testcase_34 AC 165 ms
41,936 KB
testcase_35 AC 124 ms
39,612 KB
testcase_36 AC 139 ms
41,660 KB
testcase_37 AC 128 ms
41,168 KB
testcase_38 AC 168 ms
41,960 KB
testcase_39 AC 165 ms
41,600 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[] a = new int[n];
    for(int i = 0; i < n; i++) {
      a[i] = sc.nextInt();
    }
    int max = a[n - 1] - a[0];
    int min = (int)Math.pow(10, 6);
    for(int i = 0; i < n - 1; i++) {
      min = Math.min(min, a[i + 1] - a[i]);
    }
    System.out.println(min);
    System.out.println(max);
  }
}
0