結果

問題 No.135 とりあえず1次元の問題
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-06 22:27:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 754 ms / 5,000 ms
コード長 765 bytes
コンパイル時間 2,391 ms
コンパイル使用メモリ 74,856 KB
実行使用メモリ 49,808 KB
最終ジャッジ日時 2024-06-11 01:57:01
合計ジャッジ時間 9,738 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 668 ms
49,808 KB
testcase_01 AC 137 ms
41,544 KB
testcase_02 AC 137 ms
41,608 KB
testcase_03 AC 134 ms
41,452 KB
testcase_04 AC 147 ms
41,860 KB
testcase_05 AC 144 ms
41,796 KB
testcase_06 AC 143 ms
41,632 KB
testcase_07 AC 148 ms
41,640 KB
testcase_08 AC 145 ms
41,404 KB
testcase_09 AC 146 ms
41,756 KB
testcase_10 AC 147 ms
41,788 KB
testcase_11 AC 151 ms
41,672 KB
testcase_12 AC 171 ms
41,644 KB
testcase_13 AC 146 ms
41,900 KB
testcase_14 AC 193 ms
42,296 KB
testcase_15 AC 163 ms
41,776 KB
testcase_16 AC 194 ms
42,472 KB
testcase_17 AC 200 ms
42,412 KB
testcase_18 AC 155 ms
41,552 KB
testcase_19 AC 191 ms
42,156 KB
testcase_20 AC 183 ms
41,968 KB
testcase_21 AC 587 ms
48,936 KB
testcase_22 AC 754 ms
49,080 KB
evil01.txt AC 662 ms
49,228 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(dis==0){
                   dis = d[i];
               }else if(dis>d[i]&&d[i]!=0){
                   dis = d[i];
               }
           }
       }else if(n==2){
           dis = x[1]-x[0];
       }else{
           dis = 0;
       }
       System.out.println(dis);
    }
}
0