結果

問題 No.370 道路の掃除
ユーザー YamaKasaYamaKasa
提出日時 2018-09-19 03:09:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 629 bytes
コンパイル時間 1,770 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 54,644 KB
最終ジャッジ日時 2024-07-18 08:12:20
合計ジャッジ時間 7,260 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,248 KB
testcase_01 AC 117 ms
41,032 KB
testcase_02 AC 105 ms
41,364 KB
testcase_03 AC 115 ms
41,168 KB
testcase_04 AC 108 ms
41,268 KB
testcase_05 AC 109 ms
41,536 KB
testcase_06 AC 113 ms
41,360 KB
testcase_07 AC 98 ms
41,372 KB
testcase_08 AC 110 ms
41,456 KB
testcase_09 AC 122 ms
41,452 KB
testcase_10 AC 125 ms
41,532 KB
testcase_11 AC 124 ms
41,928 KB
testcase_12 AC 129 ms
41,264 KB
testcase_13 AC 125 ms
41,756 KB
testcase_14 AC 123 ms
41,632 KB
testcase_15 AC 121 ms
41,456 KB
testcase_16 AC 117 ms
41,964 KB
testcase_17 AC 124 ms
41,300 KB
testcase_18 AC 126 ms
41,368 KB
testcase_19 AC 127 ms
41,772 KB
testcase_20 AC 167 ms
42,036 KB
testcase_21 AC 151 ms
42,204 KB
testcase_22 AC 147 ms
42,008 KB
testcase_23 AC 157 ms
42,260 KB
testcase_24 AC 124 ms
41,756 KB
testcase_25 AC 143 ms
42,220 KB
testcase_26 AC 154 ms
42,356 KB
testcase_27 AC 130 ms
41,616 KB
testcase_28 AC 159 ms
42,176 KB
testcase_29 AC 163 ms
42,040 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int M = scan.nextInt();
		int []D = new int[M];
		for(int i = 0; i < M; i++) {
			D[i] = scan.nextInt();
		}
		scan.close();
		int min = Integer.MAX_VALUE;
		for(int i = 0; i <= M - N; i++) {
			int l = D[i];
			int r = D[i + N - 1];
			if(r < 0 && l < 0) {
				min = Math.min(min, -l);
			}else if(l <= 0 && r >= 0) {
				int t = Math.min(2 * r - l, -2 * l + r);
				min = Math.min(min, t);
			}else {
				min = Math.min(min, r);
			}
		}
		System.out.println(min);
	}
}
0