結果

問題 No.370 道路の掃除
ユーザー sekiya9311sekiya9311
提出日時 2016-08-26 19:46:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 712 bytes
コンパイル時間 4,593 ms
コンパイル使用メモリ 77,276 KB
実行使用メモリ 42,700 KB
最終ジャッジ日時 2024-11-08 05:28:16
合計ジャッジ時間 10,896 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,160 KB
testcase_01 AC 134 ms
41,212 KB
testcase_02 AC 120 ms
40,048 KB
testcase_03 AC 133 ms
41,244 KB
testcase_04 AC 133 ms
41,156 KB
testcase_05 AC 132 ms
41,072 KB
testcase_06 AC 130 ms
40,928 KB
testcase_07 AC 132 ms
40,848 KB
testcase_08 AC 132 ms
41,236 KB
testcase_09 AC 116 ms
40,284 KB
testcase_10 AC 139 ms
41,396 KB
testcase_11 AC 142 ms
41,552 KB
testcase_12 AC 141 ms
41,376 KB
testcase_13 AC 141 ms
41,440 KB
testcase_14 AC 141 ms
41,188 KB
testcase_15 AC 141 ms
41,392 KB
testcase_16 AC 138 ms
41,256 KB
testcase_17 AC 144 ms
41,548 KB
testcase_18 AC 144 ms
41,088 KB
testcase_19 AC 142 ms
41,332 KB
testcase_20 AC 183 ms
41,896 KB
testcase_21 AC 185 ms
42,200 KB
testcase_22 AC 178 ms
41,924 KB
testcase_23 AC 170 ms
41,728 KB
testcase_24 AC 144 ms
41,540 KB
testcase_25 AC 178 ms
41,928 KB
testcase_26 AC 189 ms
42,276 KB
testcase_27 AC 157 ms
41,700 KB
testcase_28 AC 174 ms
41,864 KB
testcase_29 AC 179 ms
41,968 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yuki370 {
	static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		int N, M;
		N = sc.nextInt();
		M = sc.nextInt();
		int[] D = new int[M];
		for (int i = 0; i < M; i++) {
			D[i] = sc.nextInt();
		}
		int ans = (int) 1e9;
		for (int i = 0; i + N - 1 < D.length; i++) {
			if (0 <= D[i]) {
				ans = Math.min(ans, Math.abs(D[i + N - 1]));
			} else if (D[i] < 0 && 0 < D[i + N - 1]) {
				int buf = Math.abs(D[i]) * 2 + Math.abs(D[i + N - 1]);
				buf = Math.min(buf, Math.abs(D[i]) + Math.abs(D[i + N - 1]) * 2);
				ans = Math.min(ans, buf);
			} else {
				ans = Math.min(ans, Math.abs(D[i]));
			}
		}
		System.out.println(ans);
	}
}
0