結果

問題 No.135 とりあえず1次元の問題
ユーザー 🐧しゅんチャマ🌸🐧しゅんチャマ🌸
提出日時 2023-09-21 22:21:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,041 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 75,308 KB
実行使用メモリ 59,548 KB
最終ジャッジ日時 2024-07-07 15:29:06
合計ジャッジ時間 8,606 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 606 ms
59,496 KB
testcase_01 AC 115 ms
53,144 KB
testcase_02 AC 119 ms
53,908 KB
testcase_03 WA -
testcase_04 AC 133 ms
54,152 KB
testcase_05 AC 133 ms
54,012 KB
testcase_06 AC 132 ms
53,976 KB
testcase_07 AC 135 ms
54,384 KB
testcase_08 AC 134 ms
54,172 KB
testcase_09 AC 130 ms
54,184 KB
testcase_10 AC 132 ms
54,100 KB
testcase_11 AC 136 ms
54,144 KB
testcase_12 AC 162 ms
54,680 KB
testcase_13 AC 140 ms
53,956 KB
testcase_14 AC 172 ms
54,532 KB
testcase_15 AC 148 ms
54,584 KB
testcase_16 AC 175 ms
54,396 KB
testcase_17 AC 170 ms
54,556 KB
testcase_18 AC 135 ms
54,116 KB
testcase_19 AC 171 ms
54,556 KB
testcase_20 AC 171 ms
54,316 KB
testcase_21 AC 483 ms
59,004 KB
testcase_22 AC 642 ms
59,548 KB
evil01.txt AC 569 ms
59,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Y135{
    public static void main(String args[]){
        Scanner sc=new Scanner(System.in);
        int n=sc.nextInt();
        int ans=2000000000;
        if(n==1){
            ans=1;
        }
        int[] x=new int[n];
        for(int i=0;i<n;i++){
            x[i]=sc.nextInt();
        }
        Arrays.sort(x);
        for(int i=0;i<n-1;i++){
            if(x[i]!=x[i+1]){
                ans=Math.min(ans,x[i+1]-x[i]);
            }
        }
        System.out.println(ans);
    }
}
/*
class Y135{
    public static void main(String arg[]){
        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();
        }
        int min=2000000000;
        for(int i=0;i<n-1;i++){
            for(int j=i;j<n;j++){
                if(Math.abs(x[i]-x[j])!=0&&Math.abs(x[i]-x[j])<min){
                    min=Math.abs(x[i]-x[j]);
                }
            }
        }
        System.out.println(min);
    }
}
*/
0