結果

問題 No.135 とりあえず1次元の問題
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-25 12:13:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 670 ms / 5,000 ms
コード長 475 bytes
コンパイル時間 2,331 ms
コンパイル使用メモリ 74,620 KB
実行使用メモリ 59,544 KB
最終ジャッジ日時 2024-10-04 08:26:55
合計ジャッジ時間 9,574 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 643 ms
59,392 KB
testcase_01 AC 130 ms
53,780 KB
testcase_02 AC 129 ms
53,612 KB
testcase_03 AC 127 ms
54,028 KB
testcase_04 AC 141 ms
54,208 KB
testcase_05 AC 143 ms
54,052 KB
testcase_06 AC 136 ms
53,984 KB
testcase_07 AC 149 ms
54,364 KB
testcase_08 AC 136 ms
54,312 KB
testcase_09 AC 141 ms
54,356 KB
testcase_10 AC 142 ms
54,160 KB
testcase_11 AC 138 ms
54,156 KB
testcase_12 AC 167 ms
54,284 KB
testcase_13 AC 140 ms
54,016 KB
testcase_14 AC 179 ms
54,248 KB
testcase_15 AC 171 ms
54,192 KB
testcase_16 AC 190 ms
54,456 KB
testcase_17 AC 184 ms
54,704 KB
testcase_18 AC 141 ms
53,736 KB
testcase_19 AC 172 ms
53,828 KB
testcase_20 AC 178 ms
54,448 KB
testcase_21 AC 517 ms
59,336 KB
testcase_22 AC 670 ms
59,544 KB
evil01.txt AC 627 ms
59,460 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[] x = new int[N];
    for(int i = 0; i < N; i++) {
      x[i] = sc.nextInt();
    }
    Arrays.sort(x);
    int ans = Integer.MAX_VALUE;
    for(int i = 1; i < N; i++) {
      if(x[i] > x[i - 1]) ans = Math.min(ans, x[i] - x[i - 1]);
    }
    if(ans == Integer.MAX_VALUE) ans = 0;
    System.out.println(ans);
  }
}
0