結果

問題 No.370 道路の掃除
ユーザー 37zigen37zigen
提出日時 2016-05-13 23:39:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 674 bytes
コンパイル時間 1,769 ms
コンパイル使用メモリ 74,140 KB
実行使用メモリ 54,772 KB
最終ジャッジ日時 2024-10-05 18:21:50
合計ジャッジ時間 7,648 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,192 KB
testcase_01 AC 121 ms
54,076 KB
testcase_02 AC 123 ms
53,988 KB
testcase_03 AC 130 ms
54,392 KB
testcase_04 AC 121 ms
54,240 KB
testcase_05 AC 125 ms
54,016 KB
testcase_06 AC 127 ms
54,224 KB
testcase_07 AC 101 ms
52,916 KB
testcase_08 AC 116 ms
54,236 KB
testcase_09 AC 105 ms
53,012 KB
testcase_10 AC 114 ms
53,520 KB
testcase_11 AC 122 ms
54,108 KB
testcase_12 AC 122 ms
53,944 KB
testcase_13 AC 131 ms
54,708 KB
testcase_14 AC 133 ms
54,200 KB
testcase_15 AC 124 ms
54,168 KB
testcase_16 AC 118 ms
54,200 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 128 ms
54,224 KB
testcase_20 AC 162 ms
54,644 KB
testcase_21 AC 165 ms
54,192 KB
testcase_22 AC 155 ms
54,432 KB
testcase_23 AC 161 ms
54,508 KB
testcase_24 AC 125 ms
54,168 KB
testcase_25 AC 149 ms
54,344 KB
testcase_26 AC 168 ms
54,176 KB
testcase_27 AC 149 ms
54,644 KB
testcase_28 AC 150 ms
54,500 KB
testcase_29 AC 164 ms
54,316 KB
testcase_30 AC 171 ms
54,644 KB
testcase_31 AC 153 ms
54,176 KB
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Arrays;
import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int m=sc.nextInt();
		int[] d=new int[m];
		int min_d=999999999;
		for(int i=0;i<m;i++){
			d[i]=sc.nextInt();
		}
		Arrays.sort(d);
		for(int i=0;i+n<m;i++){
			min_d=Math.min(min_d, calc(d[i],d[i+n-1]));
		}
		System.out.println(min_d);
	}
	int calc(int left,int right){
		if(left<=0&&right<=0)return -left;
		if(left<0&&right>0)return Math.min(-2*left+right,-left+2*right);
		if(left>=0&&right>0)return right;
		else return -1;//error
	}
}
0