結果

問題 No.135 とりあえず1次元の問題
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-02-21 22:12:17
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 660 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 74,972 KB
実行使用メモリ 75,916 KB
最終ジャッジ日時 2024-06-11 07:15:19
合計ジャッジ時間 14,708 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 115 ms
54,208 KB
testcase_02 AC 113 ms
53,532 KB
testcase_03 WA -
testcase_04 AC 125 ms
54,332 KB
testcase_05 AC 133 ms
53,996 KB
testcase_06 AC 125 ms
54,032 KB
testcase_07 AC 129 ms
53,992 KB
testcase_08 AC 127 ms
53,960 KB
testcase_09 AC 124 ms
54,180 KB
testcase_10 AC 123 ms
53,596 KB
testcase_11 AC 127 ms
54,464 KB
testcase_12 AC 143 ms
54,072 KB
testcase_13 AC 123 ms
53,732 KB
testcase_14 AC 185 ms
54,968 KB
testcase_15 AC 144 ms
54,088 KB
testcase_16 AC 177 ms
54,232 KB
testcase_17 AC 178 ms
54,828 KB
testcase_18 AC 135 ms
56,376 KB
testcase_19 AC 182 ms
54,700 KB
testcase_20 AC 173 ms
54,092 KB
testcase_21 AC 2,761 ms
68,988 KB
testcase_22 TLE -
evil01.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int[] x = new int[n];
        for(int i=0; i<n; i++) {
            x[i] = in.nextInt();
        }

        int len = Integer.MAX_VALUE;
        for(int i=0 ;i<n; i++) {
            for(int j=0; j<i; j++) {
                if(x[i] != x[j]) {
                    len = Math.min(len, Math.abs(x[i] - x[j]));
                }
            }
        }

        System.out.println(len);

        in.close();
    }
}
0