結果

問題 No.135 とりあえず1次元の問題
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-06 22:22:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 692 bytes
コンパイル時間 2,378 ms
コンパイル使用メモリ 74,556 KB
実行使用メモリ 49,112 KB
最終ジャッジ日時 2024-06-11 01:56:47
合計ジャッジ時間 8,569 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 602 ms
49,112 KB
testcase_01 AC 98 ms
40,016 KB
testcase_02 WA -
testcase_03 AC 113 ms
41,436 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 149 ms
42,208 KB
testcase_13 AC 122 ms
41,320 KB
testcase_14 AC 159 ms
42,348 KB
testcase_15 AC 143 ms
41,748 KB
testcase_16 WA -
testcase_17 AC 155 ms
42,576 KB
testcase_18 AC 126 ms
41,828 KB
testcase_19 AC 160 ms
42,072 KB
testcase_20 AC 142 ms
41,976 KB
testcase_21 WA -
testcase_22 WA -
evil01.txt AC 498 ms
49,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
       int n = koko.nextInt();
       int[] x = new int[n];
       int[] d = new int[n];
       for(int i = 0; i<n; i++){
           x[i] = koko.nextInt();
       }
       Arrays.sort(x);
       int dis;
       if(n>2){
           dis = x[1]-x[0];
           for(int i = 1; i<n; i++){
               d[i]=x[i]-x[i-1];
               if(d[i]<dis){
                   dis = d[i];
               }
           }
       }else if(n==2){
           dis = x[1]-x[0];
       }else{
           dis = 0;
       }
       System.out.println(dis);
    }
}
0