結果

問題 No.451 575
ユーザー hermione17hermione17
提出日時 2016-12-17 00:32:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,316 bytes
コンパイル時間 4,037 ms
コンパイル使用メモリ 77,404 KB
実行使用メモリ 60,252 KB
最終ジャッジ日時 2024-05-09 19:17:49
合計ジャッジ時間 20,990 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,108 KB
testcase_01 AC 140 ms
41,104 KB
testcase_02 AC 147 ms
41,228 KB
testcase_03 AC 139 ms
41,712 KB
testcase_04 AC 147 ms
41,560 KB
testcase_05 AC 262 ms
45,592 KB
testcase_06 AC 399 ms
47,700 KB
testcase_07 AC 806 ms
51,144 KB
testcase_08 AC 149 ms
41,568 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,466 ms
60,252 KB
testcase_14 AC 166 ms
41,736 KB
testcase_15 AC 246 ms
45,736 KB
testcase_16 AC 402 ms
47,916 KB
testcase_17 AC 787 ms
50,136 KB
testcase_18 AC 817 ms
50,852 KB
testcase_19 AC 682 ms
48,420 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 147 ms
41,404 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 147 ms
41,552 KB
testcase_26 AC 149 ms
41,228 KB
testcase_27 AC 194 ms
41,708 KB
testcase_28 AC 223 ms
42,552 KB
testcase_29 AC 325 ms
47,616 KB
testcase_30 AC 771 ms
50,748 KB
testcase_31 AC 143 ms
41,328 KB
testcase_32 AC 524 ms
48,372 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