結果

問題 No.370 道路の掃除
ユーザー tentententen
提出日時 2020-10-15 08:42:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 800 bytes
コンパイル時間 2,152 ms
コンパイル使用メモリ 75,516 KB
実行使用メモリ 42,464 KB
最終ジャッジ日時 2024-07-20 19:39:58
合計ジャッジ時間 7,532 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,268 KB
testcase_01 AC 114 ms
41,180 KB
testcase_02 AC 102 ms
39,880 KB
testcase_03 AC 95 ms
39,800 KB
testcase_04 AC 94 ms
39,532 KB
testcase_05 AC 99 ms
40,176 KB
testcase_06 AC 119 ms
41,216 KB
testcase_07 AC 120 ms
40,208 KB
testcase_08 AC 118 ms
41,316 KB
testcase_09 AC 102 ms
40,260 KB
testcase_10 AC 119 ms
41,204 KB
testcase_11 AC 123 ms
41,300 KB
testcase_12 AC 132 ms
41,280 KB
testcase_13 AC 130 ms
41,328 KB
testcase_14 AC 129 ms
41,300 KB
testcase_15 AC 128 ms
41,524 KB
testcase_16 AC 122 ms
41,716 KB
testcase_17 AC 127 ms
41,192 KB
testcase_18 AC 119 ms
41,516 KB
testcase_19 AC 120 ms
41,468 KB
testcase_20 AC 175 ms
41,948 KB
testcase_21 AC 169 ms
41,952 KB
testcase_22 AC 150 ms
41,884 KB
testcase_23 AC 152 ms
41,928 KB
testcase_24 AC 132 ms
41,740 KB
testcase_25 AC 146 ms
41,612 KB
testcase_26 AC 155 ms
42,112 KB
testcase_27 AC 135 ms
41,596 KB
testcase_28 AC 147 ms
41,676 KB
testcase_29 AC 156 ms
41,840 KB
testcase_30 AC 181 ms
42,464 KB
testcase_31 AC 149 ms
41,656 KB
testcase_32 AC 160 ms
42,016 KB
testcase_33 AC 163 ms
42,404 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[] points = new int[m];
    	for (int i = 0; i < m; i++) {
    	    points[i] = sc.nextInt();
    	}
    	Arrays.sort(points);
    	int min = Integer.MAX_VALUE;
    	for (int i = 0; i + n <= m; i++) {
    	    int end = i + n - 1;
    	    if (points[i] * points[end] < 0) {
    	        min = Math.min(min, points[end] - points[i] + Math.min(-points[i], points[end]));
    	    } else {
    	        if (points[i] < 0) {
    	            min = Math.min(min, -points[i]);
    	        } else {
    	            min = Math.min(min, points[end]);
    	        }
    	    }
    	}
    	System.out.println(min);
	}
}
0