結果

問題 No.451 575
ユーザー hermione17hermione17
提出日時 2016-12-17 00:32:17
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 1,316 bytes
コンパイル時間 3,551 ms
コンパイル使用メモリ 77,284 KB
実行使用メモリ 74,304 KB
最終ジャッジ日時 2024-12-16 11:02:51
合計ジャッジ時間 19,308 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,848 KB
testcase_01 AC 119 ms
53,860 KB
testcase_02 AC 134 ms
54,012 KB
testcase_03 AC 134 ms
53,848 KB
testcase_04 AC 132 ms
53,788 KB
testcase_05 AC 242 ms
57,600 KB
testcase_06 AC 390 ms
59,068 KB
testcase_07 AC 749 ms
62,100 KB
testcase_08 AC 134 ms
53,748 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,431 ms
74,304 KB
testcase_14 AC 159 ms
53,972 KB
testcase_15 AC 228 ms
57,296 KB
testcase_16 AC 376 ms
58,740 KB
testcase_17 AC 718 ms
63,236 KB
testcase_18 AC 719 ms
60,900 KB
testcase_19 AC 637 ms
59,160 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 135 ms
53,972 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 138 ms
54,036 KB
testcase_26 AC 140 ms
53,968 KB
testcase_27 AC 181 ms
53,840 KB
testcase_28 AC 199 ms
54,352 KB
testcase_29 AC 309 ms
58,472 KB
testcase_30 AC 725 ms
62,272 KB
testcase_31 AC 132 ms
54,128 KB
testcase_32 AC 481 ms
59,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintStream;
import java.util.Scanner;

public class Y451 {
	Scanner in = new Scanner(System.in);
	PrintStream out = new PrintStream(System.out);

	Y451() throws Exception {
		int n = in.nextInt();
		long[] b = new long[n];
		for (int i = 0; i < n; i++) {
			b[i] = in.nextLong();
		}
		long[] a = new long[n+1];
		final long INF = 1000_000_000__000_000_000L;
				
		a[0] = 1;
		for (int i = 0; i < n; i++) {
			if (i % 2 == 0) {
				a[i+1] = b[i] - a[i];
			} else {
				a[i+1] = a[i] - b[i];
			}
		}
		
		for (int i = 1; i <= n; i++) {
			if (a[i] < 1 && (i % 4 == 0 || i % 4 == 3)) {
				a[0] = Math.max(a[0], -a[i] + 1);
			}
			if (a[i] > INF && (i % 4 == 1 || i % 4 == 2)) {
				a[0] = Math.max(a[0], a[i] - INF + 1);
			}
		}

		for (int i = 0; i < n; i++) {
			if (i % 2 == 0) {
				a[i+1] = b[i] - a[i];
			} else {
				a[i+1] = a[i] - b[i];
			}
		}
		
		for (int i = 0; i <= n; i++) {
			if (a[i] < 1 || INF < a[i]) {
				out.println(-1);
				return;
			}
		}
		for (int i = 0; i < n; i++) {
			if ((i % 2 == 0 && a[i] + a[i+1] != b[i]) ||
					(i % 2 == 1 && a[i] - a[i+1] != b[i])) {
				out.println(-1);
				return;
			}
		}
		out.println(n+1);
		for (int i = 0; i <= n; i++) {
			out.println(a[i]);
		}
	}

	public static void main(String argv[]) throws Exception {
		new Y451();
	}
}
0