結果

問題 No.451 575
ユーザー hermione17hermione17
提出日時 2016-12-17 00:20:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,146 bytes
コンパイル時間 3,815 ms
コンパイル使用メモリ 77,348 KB
実行使用メモリ 71,460 KB
最終ジャッジ日時 2024-07-19 16:19:56
合計ジャッジ時間 18,609 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
52,428 KB
testcase_01 AC 103 ms
52,696 KB
testcase_02 AC 110 ms
53,816 KB
testcase_03 AC 110 ms
53,608 KB
testcase_04 AC 117 ms
53,756 KB
testcase_05 AC 227 ms
57,504 KB
testcase_06 AC 332 ms
58,776 KB
testcase_07 AC 643 ms
62,468 KB
testcase_08 AC 106 ms
52,716 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,120 ms
71,460 KB
testcase_14 AC 126 ms
54,048 KB
testcase_15 AC 208 ms
57,144 KB
testcase_16 AC 337 ms
59,344 KB
testcase_17 AC 664 ms
60,548 KB
testcase_18 AC 633 ms
60,872 KB
testcase_19 AC 554 ms
59,460 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 105 ms
52,876 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 127 ms
53,736 KB
testcase_26 AC 113 ms
53,712 KB
testcase_27 AC 160 ms
53,968 KB
testcase_28 AC 172 ms
54,196 KB
testcase_29 AC 270 ms
58,288 KB
testcase_30 AC 628 ms
61,700 KB
testcase_31 AC 106 ms
52,772 KB
testcase_32 AC 418 ms
59,108 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;
			}
		}
		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