結果

問題 No.343 手抜き工事のプロ
ユーザー prime_mgmprime_mgm
提出日時 2016-02-14 19:38:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 560 ms / 2,000 ms
コード長 873 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 77,224 KB
実行使用メモリ 61,300 KB
最終ジャッジ日時 2024-09-22 06:36:48
合計ジャッジ時間 9,380 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,756 KB
testcase_01 AC 134 ms
54,192 KB
testcase_02 AC 131 ms
54,132 KB
testcase_03 AC 135 ms
54,172 KB
testcase_04 AC 135 ms
54,120 KB
testcase_05 AC 132 ms
54,144 KB
testcase_06 AC 133 ms
54,092 KB
testcase_07 AC 133 ms
54,304 KB
testcase_08 AC 131 ms
54,112 KB
testcase_09 AC 135 ms
54,012 KB
testcase_10 AC 136 ms
54,312 KB
testcase_11 AC 131 ms
54,096 KB
testcase_12 AC 149 ms
54,428 KB
testcase_13 AC 254 ms
57,644 KB
testcase_14 AC 186 ms
54,344 KB
testcase_15 AC 190 ms
54,388 KB
testcase_16 AC 134 ms
54,064 KB
testcase_17 AC 136 ms
54,028 KB
testcase_18 AC 135 ms
53,996 KB
testcase_19 AC 134 ms
54,100 KB
testcase_20 AC 254 ms
57,720 KB
testcase_21 AC 414 ms
59,204 KB
testcase_22 AC 423 ms
59,224 KB
testcase_23 AC 519 ms
59,400 KB
testcase_24 AC 560 ms
60,040 KB
testcase_25 AC 524 ms
61,300 KB
testcase_26 AC 539 ms
61,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int N = sc.nextInt();
		int L = sc.nextInt();
		int[] minX = new int[N];// 上から順に0,1,2,...と振る
		int[] maxX = new int[N];
		double[] G = new double[N-1];
		int count_glue = 0;

		boolean flag = false;
		minX[N-1] = 0;
		maxX[N-1] = L;
		for(int i=N-2;i>=0;i--){
			minX[i] = sc.nextInt();
			maxX[i] = minX[i]+L;
			if(minX[i+1] >= maxX[i] || maxX[i+1] <= minX[i])flag = true;
		}
		sc.close();

		if(flag)System.out.println(-1);
		else{
			double sum = 0;
			for(int i=0;i<N-1;i++){
				sum += minX[i];
				G[i] = sum/(i+1) + L/2.0;

				boolean notfixed = G[i] <= minX[i+1] || G[i] >= maxX[i+1]
						|| G[i] <= minX[i] || G[i] >= maxX[i];
				if(notfixed){
					count_glue++;
				}
			}
			System.out.println(count_glue);
		}
	}

}
0