結果

問題 No.135 とりあえず1次元の問題
ユーザー kou6839kou6839
提出日時 2015-01-30 22:57:35
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 464 bytes
コンパイル時間 2,699 ms
コンパイル使用メモリ 76,712 KB
実行使用メモリ 60,864 KB
最終ジャッジ日時 2025-01-03 04:20:36
合計ジャッジ時間 9,414 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 594 ms
49,912 KB
testcase_01 AC 116 ms
41,720 KB
testcase_02 WA -
testcase_03 AC 117 ms
41,596 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 145 ms
42,496 KB
testcase_13 AC 127 ms
42,048 KB
testcase_14 AC 192 ms
44,280 KB
testcase_15 AC 149 ms
42,788 KB
testcase_16 WA -
testcase_17 AC 196 ms
44,328 KB
testcase_18 AC 130 ms
42,200 KB
testcase_19 AC 188 ms
44,544 KB
testcase_20 AC 189 ms
44,276 KB
testcase_21 WA -
testcase_22 WA -
evil01.txt AC 571 ms
49,784 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