結果

問題 No.370 道路の掃除
ユーザー ym678ym678
提出日時 2016-09-28 20:17:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 531 bytes
コンパイル時間 2,521 ms
コンパイル使用メモリ 75,580 KB
実行使用メモリ 55,016 KB
最終ジャッジ日時 2024-11-21 08:25:38
合計ジャッジ時間 8,785 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,424 KB
testcase_01 AC 136 ms
54,180 KB
testcase_02 AC 136 ms
54,168 KB
testcase_03 AC 138 ms
54,104 KB
testcase_04 AC 136 ms
53,928 KB
testcase_05 AC 137 ms
54,268 KB
testcase_06 AC 134 ms
54,396 KB
testcase_07 AC 131 ms
54,024 KB
testcase_08 AC 134 ms
54,132 KB
testcase_09 AC 134 ms
54,300 KB
testcase_10 AC 141 ms
54,224 KB
testcase_11 AC 145 ms
54,196 KB
testcase_12 AC 146 ms
54,136 KB
testcase_13 AC 152 ms
54,092 KB
testcase_14 AC 139 ms
54,000 KB
testcase_15 AC 143 ms
54,372 KB
testcase_16 AC 143 ms
54,040 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 147 ms
54,068 KB
testcase_20 AC 189 ms
54,356 KB
testcase_21 AC 188 ms
54,356 KB
testcase_22 AC 173 ms
54,624 KB
testcase_23 AC 187 ms
54,440 KB
testcase_24 AC 149 ms
54,116 KB
testcase_25 AC 181 ms
54,172 KB
testcase_26 AC 190 ms
54,376 KB
testcase_27 AC 154 ms
54,240 KB
testcase_28 AC 177 ms
54,472 KB
testcase_29 AC 188 ms
54,452 KB
testcase_30 AC 195 ms
54,884 KB
testcase_31 AC 182 ms
54,556 KB
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		Scanner scn = new Scanner(System.in);
		int N = scn.nextInt();
		int M = scn.nextInt();
		int dp[] = new int[M];
		int ans = Integer.MAX_VALUE/2;

		
		for(int i=0; i<M; i++){
			dp[i] = scn.nextInt();
		}
		Arrays.sort(dp);		
		for(int i=0; i<M-N; i++){			
			 ans = Math.min(ans , Math.abs(dp[i]-dp[i+N-1]) +
					              Math.min(Math.abs(dp[i]), Math.abs(dp[i+N-1])));
		}
		System.out.println(ans);
	}
}
0