結果

問題 No.370 道路の掃除
ユーザー ym678ym678
提出日時 2016-09-28 20:19:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 528 bytes
コンパイル時間 6,012 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 54,788 KB
最終ジャッジ日時 2024-11-21 08:31:09
合計ジャッジ時間 12,194 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,812 KB
testcase_01 AC 116 ms
53,140 KB
testcase_02 AC 129 ms
53,688 KB
testcase_03 AC 130 ms
53,772 KB
testcase_04 AC 129 ms
54,068 KB
testcase_05 AC 133 ms
54,084 KB
testcase_06 AC 130 ms
53,772 KB
testcase_07 AC 133 ms
54,008 KB
testcase_08 AC 136 ms
53,900 KB
testcase_09 AC 133 ms
54,008 KB
testcase_10 AC 142 ms
53,972 KB
testcase_11 AC 147 ms
53,816 KB
testcase_12 AC 143 ms
54,172 KB
testcase_13 AC 143 ms
54,060 KB
testcase_14 AC 142 ms
53,928 KB
testcase_15 AC 143 ms
54,112 KB
testcase_16 AC 141 ms
54,060 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 143 ms
53,952 KB
testcase_20 AC 186 ms
54,404 KB
testcase_21 AC 184 ms
54,336 KB
testcase_22 AC 182 ms
54,196 KB
testcase_23 AC 176 ms
54,004 KB
testcase_24 AC 144 ms
54,208 KB
testcase_25 AC 166 ms
54,068 KB
testcase_26 AC 185 ms
54,264 KB
testcase_27 AC 155 ms
53,884 KB
testcase_28 AC 171 ms
53,972 KB
testcase_29 AC 187 ms
54,108 KB
testcase_30 AC 189 ms
54,788 KB
testcase_31 AC 174 ms
54,184 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;

		
		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