結果

問題 No.451 575
ユーザー 37zigen37zigen
提出日時 2016-12-02 02:31:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,709 bytes
コンパイル時間 3,543 ms
コンパイル使用メモリ 79,124 KB
実行使用メモリ 59,876 KB
最終ジャッジ日時 2024-05-09 18:23:49
合計ジャッジ時間 17,818 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,824 KB
testcase_01 AC 112 ms
41,308 KB
testcase_02 AC 110 ms
41,076 KB
testcase_03 AC 107 ms
40,460 KB
testcase_04 AC 103 ms
39,900 KB
testcase_05 AC 218 ms
45,924 KB
testcase_06 AC 313 ms
48,064 KB
testcase_07 AC 620 ms
53,364 KB
testcase_08 AC 99 ms
39,552 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,100 ms
59,580 KB
testcase_14 WA -
testcase_15 AC 202 ms
45,744 KB
testcase_16 AC 332 ms
47,840 KB
testcase_17 AC 654 ms
53,480 KB
testcase_18 WA -
testcase_19 AC 547 ms
49,244 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 117 ms
41,488 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 115 ms
40,220 KB
testcase_26 WA -
testcase_27 AC 158 ms
41,468 KB
testcase_28 AC 169 ms
42,324 KB
testcase_29 AC 271 ms
47,488 KB
testcase_30 AC 644 ms
53,060 KB
testcase_31 AC 103 ms
40,080 KB
testcase_32 AC 397 ms
48,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class Q451 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long[] b = new long[n + 1];
		long[] a = new long[n + 2];
		long Max = 1_000_000_000_000_000_000L;
		for (int i = 1; i <= n; ++i) {
			b[i] = sc.nextLong();
			if ((i + 1) % 2 == 0)
				a[i + 1] += b[i];
			else
				a[i + 1] -= b[i];
		}
		a[1] = 1;
		for (int i = 2; i <= n + 1; ++i) {
			if (i % 2 == 0) {
				a[i] -= a[i - 1];
			} else {
				a[i] += a[i - 1];
			}
			if (a[i] > 2 * Max || a[i] < -Max) {
				System.out.println(-1);
				return;
			}
		}

		long oddMax = a[1];
		long oddMin = a[1];
		long evenMax = a[2];
		long evenMin = a[2];
		for (int i = 1; i <= n + 1; ++i) {
			if (i % 2 == 1) {
				oddMax = Math.max(oddMax, a[i]);
				oddMin = Math.min(oddMin, a[i]);
			} else {
				evenMax = Math.max(evenMax, a[i]);
				evenMin = Math.min(evenMin, a[i]);
			}
		}

		ArrayDeque<Long> que = new ArrayDeque<>();
		// oddにどれだけ加算するか
		que.add(Max - oddMax);
		que.add(-Max + evenMax);
		que.add(1 - oddMin);
		que.add(-1 + evenMin);
		while (!que.isEmpty()) {
			long add = que.poll();
			if (oddMax + add <= Max && oddMax + add > 0 && evenMax - add <= Max && evenMax - add > 0 && oddMin + add > 0
					&& oddMin + add <= Max && evenMin - add > 0 && evenMin - add <= Max) {
				System.out.println(n + 1);
				for (int i = 1; i <= n + 1; ++i) {
					if (i % 2 == 1) {
						a[i] += add;
					} else {
						a[i] -= add;
					}
					System.out.println(a[i]);
				}
				return;
			}
		}
		System.out.println(-1);

	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0