結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,624 KB
testcase_01 AC 102 ms
41,636 KB
testcase_02 AC 122 ms
41,672 KB
testcase_03 AC 119 ms
41,500 KB
testcase_04 AC 122 ms
41,888 KB
testcase_05 AC 235 ms
45,976 KB
testcase_06 AC 340 ms
48,132 KB
testcase_07 AC 708 ms
52,788 KB
testcase_08 AC 114 ms
41,508 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,290 ms
59,924 KB
testcase_14 AC 138 ms
41,680 KB
testcase_15 AC 223 ms
45,492 KB
testcase_16 AC 353 ms
48,108 KB
testcase_17 AC 697 ms
52,896 KB
testcase_18 AC 706 ms
52,780 KB
testcase_19 AC 659 ms
49,096 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 125 ms
41,784 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 125 ms
41,596 KB
testcase_26 AC 129 ms
41,412 KB
testcase_27 AC 169 ms
41,916 KB
testcase_28 AC 187 ms
42,548 KB
testcase_29 AC 301 ms
48,052 KB
testcase_30 AC 714 ms
52,844 KB
testcase_31 AC 128 ms
41,600 KB
testcase_32 AC 480 ms
48,568 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