結果

問題 No.370 道路の掃除
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 17:56:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 787 bytes
コンパイル時間 2,338 ms
コンパイル使用メモリ 77,544 KB
実行使用メモリ 42,504 KB
最終ジャッジ日時 2024-11-26 02:20:31
合計ジャッジ時間 8,646 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,156 KB
testcase_01 AC 131 ms
41,248 KB
testcase_02 AC 130 ms
41,312 KB
testcase_03 AC 118 ms
39,984 KB
testcase_04 AC 126 ms
41,124 KB
testcase_05 AC 129 ms
41,420 KB
testcase_06 AC 129 ms
41,440 KB
testcase_07 AC 132 ms
41,356 KB
testcase_08 AC 135 ms
41,284 KB
testcase_09 AC 130 ms
41,056 KB
testcase_10 AC 140 ms
41,332 KB
testcase_11 AC 139 ms
41,488 KB
testcase_12 AC 140 ms
41,296 KB
testcase_13 AC 144 ms
41,484 KB
testcase_14 AC 144 ms
41,468 KB
testcase_15 AC 141 ms
41,392 KB
testcase_16 AC 142 ms
41,620 KB
testcase_17 AC 138 ms
41,516 KB
testcase_18 AC 141 ms
41,588 KB
testcase_19 AC 140 ms
41,564 KB
testcase_20 AC 181 ms
41,788 KB
testcase_21 AC 180 ms
42,084 KB
testcase_22 AC 171 ms
41,864 KB
testcase_23 AC 172 ms
42,192 KB
testcase_24 AC 146 ms
41,432 KB
testcase_25 AC 176 ms
41,908 KB
testcase_26 AC 186 ms
42,176 KB
testcase_27 AC 154 ms
41,976 KB
testcase_28 AC 175 ms
41,692 KB
testcase_29 AC 182 ms
42,100 KB
testcase_30 AC 183 ms
42,504 KB
testcase_31 AC 177 ms
41,924 KB
testcase_32 AC 183 ms
42,224 KB
testcase_33 AC 187 ms
42,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int M = sc.nextInt();
        int [] D = new int [M];
        for(int i=0; i<M; i++){
            D[i]=sc.nextInt();
        }
        Arrays.sort(D);
        int min=Integer.MAX_VALUE;
        int d = 0;
        for(int i=0; i<M-N+1; i++){
            if(D[i]<0 && D[i+N-1]<0 ){
                d=Math.abs(D[i]);
            }else if(D[i]>0 && D[i+N-1]>0 ){
                d=D[i+N-1];
            }else{
                int a = 2*D[i+N-1]-D[i];
                int b = D[i+N-1]-2*D[i];
                d=Math.min(a,b);
            }
            min=Math.min(min,d);
        }
        System.out.println(min);
    }
}
0