結果

問題 No.370 道路の掃除
ユーザー ぴろずぴろず
提出日時 2016-07-18 22:04:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 2,201 ms
コンパイル使用メモリ 74,772 KB
実行使用メモリ 42,472 KB
最終ジャッジ日時 2024-10-15 17:05:35
合計ジャッジ時間 7,616 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,168 KB
testcase_01 AC 103 ms
40,168 KB
testcase_02 AC 112 ms
40,856 KB
testcase_03 AC 112 ms
41,228 KB
testcase_04 AC 127 ms
41,156 KB
testcase_05 AC 118 ms
41,352 KB
testcase_06 AC 104 ms
39,880 KB
testcase_07 AC 113 ms
40,980 KB
testcase_08 AC 112 ms
41,004 KB
testcase_09 AC 108 ms
39,948 KB
testcase_10 AC 135 ms
41,224 KB
testcase_11 AC 126 ms
41,484 KB
testcase_12 AC 127 ms
41,556 KB
testcase_13 AC 120 ms
41,508 KB
testcase_14 AC 127 ms
41,168 KB
testcase_15 AC 121 ms
41,120 KB
testcase_16 AC 125 ms
41,604 KB
testcase_17 AC 130 ms
41,388 KB
testcase_18 AC 123 ms
41,512 KB
testcase_19 AC 124 ms
41,204 KB
testcase_20 AC 164 ms
42,248 KB
testcase_21 AC 156 ms
41,752 KB
testcase_22 AC 170 ms
42,164 KB
testcase_23 AC 157 ms
41,872 KB
testcase_24 AC 125 ms
41,276 KB
testcase_25 AC 153 ms
41,584 KB
testcase_26 AC 180 ms
42,024 KB
testcase_27 AC 132 ms
41,308 KB
testcase_28 AC 161 ms
41,504 KB
testcase_29 AC 159 ms
41,504 KB
testcase_30 AC 162 ms
42,264 KB
testcase_31 AC 159 ms
41,708 KB
testcase_32 AC 159 ms
42,060 KB
testcase_33 AC 167 ms
42,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no370;

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

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int k = sc.nextInt();
		int n = sc.nextInt();
		int[] d = new int[n];
		for(int i=0;i<n;i++) {
			d[i] = sc.nextInt();
		}
		Arrays.sort(d);
		int ans = Integer.MAX_VALUE;
		for(int i=0;i<=n-k;i++) {
			int left = d[i];
			int right = d[i+k-1];
			ans = Math.min(ans, Math.min(Math.abs(left), Math.abs(right)) + Math.abs(left - right));
		}
		System.out.println(ans);
	}

}
0