結果

問題 No.370 道路の掃除
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 17:41:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 785 bytes
コンパイル時間 1,922 ms
コンパイル使用メモリ 77,196 KB
実行使用メモリ 56,520 KB
最終ジャッジ日時 2024-11-26 02:20:22
合計ジャッジ時間 7,761 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,184 KB
testcase_01 AC 120 ms
54,280 KB
testcase_02 AC 105 ms
52,776 KB
testcase_03 AC 117 ms
53,848 KB
testcase_04 AC 112 ms
53,560 KB
testcase_05 AC 107 ms
52,968 KB
testcase_06 AC 118 ms
54,316 KB
testcase_07 AC 101 ms
52,608 KB
testcase_08 AC 120 ms
54,188 KB
testcase_09 AC 116 ms
54,244 KB
testcase_10 AC 121 ms
54,000 KB
testcase_11 AC 126 ms
53,876 KB
testcase_12 AC 127 ms
53,944 KB
testcase_13 AC 123 ms
54,276 KB
testcase_14 AC 121 ms
54,324 KB
testcase_15 AC 124 ms
53,928 KB
testcase_16 AC 125 ms
54,080 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 123 ms
53,804 KB
testcase_20 AC 160 ms
54,212 KB
testcase_21 AC 166 ms
54,148 KB
testcase_22 AC 162 ms
54,424 KB
testcase_23 AC 165 ms
54,416 KB
testcase_24 AC 130 ms
54,352 KB
testcase_25 AC 157 ms
54,040 KB
testcase_26 AC 169 ms
54,548 KB
testcase_27 AC 142 ms
54,132 KB
testcase_28 AC 154 ms
54,052 KB
testcase_29 AC 160 ms
54,348 KB
testcase_30 AC 167 ms
54,340 KB
testcase_31 AC 159 ms
54,100 KB
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

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; 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