結果

問題 No.451 575
ユーザー olpheolphe
提出日時 2016-12-02 01:09:34
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 913 bytes
コンパイル時間 659 ms
コンパイル使用メモリ 56,228 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-09 17:58:57
合計ジャッジ時間 3,938 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include "iostream" 
using namespace std;

int N;
long long int num[100000];
long long int ans[100001];
long long int MIN=0;

int main() {
	cin >> N;
	for (int i = 0; i < N; i++) {
		cin >> num[i];
	}
	ans[0] = 1;
	for (int i = 1; i < N + 1; i++) {
		if (i % 2 == 1) {
			ans[i] = num[i - 1] - ans[i - 1];
		}
		else {
			ans[i] = ans[i - 1] - num[i - 1];
		}
		if (ans[i] <= 0) {
			if (((i + 1) / 2) % 2 == 1) {
				if (ans[i] - 1 < MIN)MIN = ans[i] - 1;
			}
			else {
				cout << "-1\n";
				return 0;
			}
		}
	}
	if (MIN < 0) {
		ans[0] -= MIN;
	}
	if (ans[0] <= 0) {
		cout << "-1\n";
		return 0;
	}
	for (int i = 1; i < N + 1; i++) {
		if (i % 2 == 1) {
			ans[i] = num[i - 1] - ans[i - 1];
		}
		else {
			ans[i] = ans[i - 1] - num[i - 1];
		}
		if (ans[i] <= 0) {
			cout << "-1\n";
			return 0;
		}
	}
	cout << N + 1 << "\n";
	for (int i = 0; i < N + 1; i++) {
		cout << ans[i] << "\n";
	}
	return 0;
}
0