結果

問題 No.451 575
ユーザー 37zigen37zigen
提出日時 2016-12-02 01:19:58
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 1,016 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 77,692 KB
実行使用メモリ 59,792 KB
最終ジャッジ日時 2024-12-16 09:19:13
合計ジャッジ時間 18,787 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,384 KB
testcase_01 AC 120 ms
40,288 KB
testcase_02 AC 135 ms
41,072 KB
testcase_03 AC 138 ms
41,568 KB
testcase_04 AC 134 ms
41,300 KB
testcase_05 AC 270 ms
46,284 KB
testcase_06 AC 380 ms
48,084 KB
testcase_07 AC 695 ms
53,172 KB
testcase_08 AC 137 ms
41,272 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,430 ms
59,792 KB
testcase_14 AC 162 ms
41,212 KB
testcase_15 AC 257 ms
45,240 KB
testcase_16 AC 403 ms
47,652 KB
testcase_17 AC 764 ms
52,964 KB
testcase_18 AC 808 ms
52,596 KB
testcase_19 AC 679 ms
48,704 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 137 ms
41,212 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 139 ms
41,184 KB
testcase_26 AC 145 ms
41,060 KB
testcase_27 AC 185 ms
41,872 KB
testcase_28 AC 215 ms
42,288 KB
testcase_29 AC 333 ms
47,820 KB
testcase_30 AC 783 ms
52,472 KB
testcase_31 AC 137 ms
41,304 KB
testcase_32 AC 522 ms
48,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long[] b = new long[n + 1];
		for (int i = 0; i < n; ++i) {
			b[i + 1] = sc.nextLong();
		}
		/*
		 * a_0-a_1=b_1 a_1+a_2=b_2 a_2-a_3=b_3 a_3+a_4=b_4
		 * 
		 * a_0=0
		 * 
		 * a_(i+1)=b_i-a_i a_(i+1)=a_i-b_i
		 */

		long[] a = new long[n + 2];
		long min = 1;
		int counter = 0;
		while (true) {
			++counter;
			a[1] = min;
			for (int i = 2; i <= n + 1; ++i) {
				if (i % 2 == 0) {
					a[i] = b[i - 1] - a[i - 1];
				} else {
					a[i] = a[i - 1] - b[i - 1];
				}
				min = Math.min(min, a[i]);
			}
			if (min > 0)
				break;
			if (min < 1) {
				min = 1 - min;
			}
			if (counter > 10) {
				System.out.println(-1);
				return;
			}
		}
		System.out.println(n + 1);
		for (int i = 1; i <= n + 1; ++i) {
			System.out.println(a[i]);
		}
	}

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