結果

問題 No.135 とりあえず1次元の問題
ユーザー 🐧しゅんチャマ🌸🐧しゅんチャマ🌸
提出日時 2023-09-21 22:24:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 581 ms / 5,000 ms
コード長 1,099 bytes
コンパイル時間 2,063 ms
コンパイル使用メモリ 75,084 KB
実行使用メモリ 48,708 KB
最終ジャッジ日時 2024-07-07 15:32:02
合計ジャッジ時間 8,014 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 581 ms
48,436 KB
testcase_01 AC 115 ms
41,016 KB
testcase_02 AC 101 ms
41,088 KB
testcase_03 AC 102 ms
41,264 KB
testcase_04 AC 117 ms
41,400 KB
testcase_05 AC 119 ms
41,368 KB
testcase_06 AC 119 ms
41,100 KB
testcase_07 AC 121 ms
41,484 KB
testcase_08 AC 117 ms
41,564 KB
testcase_09 AC 117 ms
41,420 KB
testcase_10 AC 118 ms
41,652 KB
testcase_11 AC 122 ms
41,012 KB
testcase_12 AC 142 ms
41,772 KB
testcase_13 AC 124 ms
41,348 KB
testcase_14 AC 157 ms
41,872 KB
testcase_15 AC 130 ms
41,648 KB
testcase_16 AC 162 ms
42,156 KB
testcase_17 AC 149 ms
42,228 KB
testcase_18 AC 125 ms
41,644 KB
testcase_19 AC 157 ms
42,580 KB
testcase_20 AC 156 ms
41,736 KB
testcase_21 AC 477 ms
48,060 KB
testcase_22 AC 481 ms
48,708 KB
evil01.txt AC 537 ms
48,496 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]);
            }
        }
        if(ans==2000000000){
            ans=0;
        }
        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