結果

問題 No.451 575
ユーザー hermione17hermione17
提出日時 2016-12-17 00:58:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,236 ms / 2,000 ms
コード長 1,316 bytes
コンパイル時間 2,879 ms
コンパイル使用メモリ 77,920 KB
実行使用メモリ 65,984 KB
最終ジャッジ日時 2024-05-09 19:56:48
合計ジャッジ時間 13,215 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,120 KB
testcase_01 AC 101 ms
41,400 KB
testcase_02 AC 110 ms
41,184 KB
testcase_03 AC 102 ms
40,792 KB
testcase_04 AC 100 ms
41,264 KB
testcase_05 AC 203 ms
45,928 KB
testcase_06 AC 303 ms
47,664 KB
testcase_07 AC 525 ms
52,392 KB
testcase_08 AC 95 ms
40,524 KB
testcase_09 AC 182 ms
42,236 KB
testcase_10 AC 563 ms
49,308 KB
testcase_11 AC 982 ms
59,612 KB
testcase_12 AC 1,210 ms
65,652 KB
testcase_13 AC 1,236 ms
65,984 KB
testcase_14 AC 115 ms
41,064 KB
testcase_15 AC 193 ms
45,152 KB
testcase_16 AC 317 ms
47,784 KB
testcase_17 AC 617 ms
51,596 KB
testcase_18 AC 627 ms
51,308 KB
testcase_19 AC 532 ms
49,256 KB
testcase_20 AC 277 ms
47,568 KB
testcase_21 AC 198 ms
42,600 KB
testcase_22 AC 102 ms
41,184 KB
testcase_23 AC 1,115 ms
64,536 KB
testcase_24 AC 783 ms
63,492 KB
testcase_25 AC 118 ms
41,076 KB
testcase_26 AC 109 ms
40,616 KB
testcase_27 AC 161 ms
42,184 KB
testcase_28 AC 172 ms
42,460 KB
testcase_29 AC 277 ms
48,032 KB
testcase_30 AC 607 ms
52,612 KB
testcase_31 AC 104 ms
41,252 KB
testcase_32 AC 389 ms
48,072 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] + 2);
			}
			if (a[i] > INF && (i % 4 == 1 || i % 4 == 2)) {
				a[0] = Math.max(a[0], a[i] - INF + 2);
			}
		}

		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