結果

問題 No.135 とりあえず1次元の問題
ユーザー kou6839kou6839
提出日時 2015-01-30 22:57:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 464 bytes
コンパイル時間 2,742 ms
コンパイル使用メモリ 75,080 KB
実行使用メモリ 48,820 KB
最終ジャッジ日時 2024-06-11 01:13:54
合計ジャッジ時間 8,053 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 623 ms
48,704 KB
testcase_01 AC 107 ms
40,820 KB
testcase_02 WA -
testcase_03 AC 101 ms
40,392 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 130 ms
41,612 KB
testcase_13 AC 123 ms
41,676 KB
testcase_14 AC 162 ms
42,188 KB
testcase_15 AC 144 ms
41,664 KB
testcase_16 WA -
testcase_17 AC 165 ms
42,176 KB
testcase_18 AC 131 ms
41,664 KB
testcase_19 AC 157 ms
42,608 KB
testcase_20 AC 155 ms
42,020 KB
testcase_21 WA -
testcase_22 WA -
evil01.txt AC 541 ms
48,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] num = new int[n];
        for(int i=0;i<n;i++){
        	num[i]=sc.nextInt();
        }
        Arrays.sort(num);
        int ans=999999;
        for(int i=0;i<=n-2;i++){
        	ans=Math.min(ans, num[i+1]-num[i]);
        }
        System.out.println(ans);
    }
}			
0