結果

問題 No.451 575
ユーザー hirokazu1020hirokazu1020
提出日時 2016-12-02 01:13:49
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,284 bytes
コンパイル時間 851 ms
コンパイル使用メモリ 98,076 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-09 18:01:39
合計ジャッジ時間 5,876 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#include<sstream>
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<climits>
#include<cmath>
#include<string>
#include<vector>
#include<set>
#include<map>
#include<queue>
#include<numeric>
#include<functional>
#include<algorithm>
#include<bitset>
#include<tuple>
#include<unordered_set>
#include<random>
using namespace std;
#define INF (1<<29)
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define all(v) v.begin(),v.end()
#define uniq(v) v.erase(unique(all(v)),v.end())



long long maxv = 1000000000000000000;
int n;
long long b[100000];




void f() {
	long long lb, ub;
	lb = 1;
	ub = maxv + 1;
	for (int i = n; i > 0;i--) {
		if (i&1) {
			tie(lb, ub) = make_pair(b[i - 1] - ub - 1, b[i - 1] - lb + 1);
		}
		else {
			tie(lb, ub) = make_pair(b[i - 1] + lb, b[i - 1] + ub);
		}
		lb = max(lb, 1LL);
		ub = min(ub, maxv + 1);
		if (lb == ub || ub <= 1 || maxv < lb) {
			cout << -1 << endl;
			return;
		}
	}

	long long x = lb;
	cout << n + 1<< endl;
	cout << x << endl;
	for (int i = 1; i <= n;i++) {
		if (i & 1) {
			x = b[i - 1] - x;
		}
		else {
			x = x - b[i - 1];
		}
		cout << x << endl;
	}
}







int main() {
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n;
	rep(i, n)cin >> b[i];
	f();

	return 0;
}
0