結果

問題 No.370 道路の掃除
ユーザー t8m8⛄️t8m8⛄️
提出日時 2016-08-17 15:22:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 1,061 bytes
コンパイル時間 5,099 ms
コンパイル使用メモリ 89,176 KB
実行使用メモリ 43,004 KB
最終ジャッジ日時 2024-11-07 18:48:15
合計ジャッジ時間 10,862 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,524 KB
testcase_01 AC 144 ms
41,540 KB
testcase_02 AC 136 ms
40,624 KB
testcase_03 AC 146 ms
41,528 KB
testcase_04 AC 149 ms
41,588 KB
testcase_05 AC 149 ms
41,660 KB
testcase_06 AC 147 ms
41,756 KB
testcase_07 AC 138 ms
40,700 KB
testcase_08 AC 148 ms
41,940 KB
testcase_09 AC 146 ms
41,588 KB
testcase_10 AC 150 ms
41,612 KB
testcase_11 AC 155 ms
41,744 KB
testcase_12 AC 155 ms
41,672 KB
testcase_13 AC 158 ms
41,788 KB
testcase_14 AC 157 ms
41,968 KB
testcase_15 AC 162 ms
42,104 KB
testcase_16 AC 156 ms
41,704 KB
testcase_17 AC 159 ms
41,976 KB
testcase_18 AC 153 ms
41,952 KB
testcase_19 AC 160 ms
41,896 KB
testcase_20 AC 200 ms
42,936 KB
testcase_21 AC 202 ms
42,596 KB
testcase_22 AC 194 ms
42,348 KB
testcase_23 AC 199 ms
42,452 KB
testcase_24 AC 158 ms
41,804 KB
testcase_25 AC 189 ms
42,408 KB
testcase_26 AC 205 ms
42,756 KB
testcase_27 AC 173 ms
42,128 KB
testcase_28 AC 180 ms
42,552 KB
testcase_29 AC 206 ms
42,792 KB
testcase_30 AC 206 ms
42,860 KB
testcase_31 AC 202 ms
42,348 KB
testcase_32 AC 202 ms
42,644 KB
testcase_33 AC 207 ms
43,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0370 {

	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);
	static boolean debug = false;

	static void solve() {
		int n = in.nextInt();
		int m = in.nextInt();
		int[] d = new int[m];
		for (int i=0; i<m; i++) {
			d[i] = in.nextInt();
		}
		Arrays.sort(d);
		int ans = Integer.MAX_VALUE/2;
		int l = 0, r = n-1;
		while (r < m) {
			if (d[r] <= 0) {
				ans = Math.min(ans, -d[l]);
			} else if (0 <= d[l]) {
				ans = Math.min(ans, d[r]);
			} else {
				ans = Math.min(ans, Math.min(-2*d[l] + d[r], -d[l] + 2*d[r]));
			}
			l++; r++;
		}
		out.println(ans);
	}

	public static void main(String[] args) {
		debug = args.length > 0;
		long start = System.nanoTime();

		solve();
		out.flush();

		long end = System.nanoTime();
		dump((end - start) / 1000000 + " ms");
		in.close();
		out.close();
	}

	static void dump(Object... o) { if (debug) System.err.println(Arrays.deepToString(o)); }
}
0