結果

問題 No.370 道路の掃除
ユーザー YamaKasaYamaKasa
提出日時 2018-09-19 03:11:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 2,176 ms
コンパイル使用メモリ 75,076 KB
実行使用メモリ 42,548 KB
最終ジャッジ日時 2024-07-18 08:12:29
合計ジャッジ時間 8,337 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,568 KB
testcase_01 AC 122 ms
40,528 KB
testcase_02 AC 130 ms
41,248 KB
testcase_03 AC 129 ms
41,160 KB
testcase_04 AC 126 ms
41,356 KB
testcase_05 AC 131 ms
41,356 KB
testcase_06 AC 127 ms
41,152 KB
testcase_07 AC 130 ms
41,304 KB
testcase_08 AC 129 ms
41,564 KB
testcase_09 AC 130 ms
41,636 KB
testcase_10 AC 138 ms
41,516 KB
testcase_11 AC 141 ms
41,400 KB
testcase_12 AC 140 ms
41,708 KB
testcase_13 AC 140 ms
41,444 KB
testcase_14 AC 138 ms
41,832 KB
testcase_15 AC 128 ms
41,204 KB
testcase_16 AC 140 ms
41,512 KB
testcase_17 AC 138 ms
41,276 KB
testcase_18 AC 138 ms
41,680 KB
testcase_19 AC 140 ms
41,680 KB
testcase_20 AC 181 ms
42,548 KB
testcase_21 AC 182 ms
42,420 KB
testcase_22 AC 178 ms
41,992 KB
testcase_23 AC 178 ms
42,124 KB
testcase_24 AC 139 ms
41,528 KB
testcase_25 AC 175 ms
41,944 KB
testcase_26 AC 186 ms
42,184 KB
testcase_27 AC 154 ms
41,648 KB
testcase_28 AC 176 ms
42,020 KB
testcase_29 AC 182 ms
42,076 KB
testcase_30 AC 186 ms
42,388 KB
testcase_31 AC 177 ms
42,000 KB
testcase_32 AC 186 ms
42,332 KB
testcase_33 AC 179 ms
42,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

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