結果

問題 No.451 575
ユーザー finefine
提出日時 2016-12-02 22:32:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 579 bytes
コンパイル時間 1,477 ms
コンパイル使用メモリ 169,580 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-09 19:02:07
合計ジャッジ時間 4,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 20 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 138 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 4 ms
6,940 KB
testcase_17 AC 19 ms
6,940 KB
testcase_18 AC 18 ms
6,940 KB
testcase_19 AC 13 ms
6,940 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
6,944 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 3 ms
6,940 KB
testcase_30 AC 18 ms
6,944 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 6 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

const ll INF = 1000000000000000000;

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	int n;
	cin >> n;
	vector<ll> b(n);
	for (int i = 0; i < n; i++) cin >> b[i];
	vector<ll> a(n + 1);
	a[0] = 1;
	for (int i = 1; i <= n; i++) {
		if (i % 2 == 1) {
			a[i] = b[i - 1] - a[i - 1];
		} else {
			a[i] = a[i - 1]- b[i - 1];
		}
		
		if (a[i] <= 0 || a[i] > INF) {
			cout << -1 << endl;
			return 0;
		}
	} 
	cout << n + 1 << endl;
	for (int i = 0; i <= n; i++) {
		cout << a[i] << endl;
	}
	return 0;
}
0