結果

問題 No.451 575
ユーザー chaemonchaemon
提出日時 2016-12-02 00:33:09
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 2,045 bytes
コンパイル時間 1,170 ms
コンパイル使用メモリ 80,992 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-09 17:02:50
合計ジャッジ時間 6,481 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 10 ms
5,376 KB
testcase_07 AC 64 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 186 ms
5,376 KB
testcase_13 AC 187 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 63 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 1 ms
5,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 14 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:103:27: warning: ‘a’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  103 |                         a = b[i] - a;
      |                         ~~^~~~~~~~~~

ソースコード

diff #

// #includes {{{
#include <algorithm>
#include <numeric>
#include <iostream>
#include <string>
#include <vector>
#include <queue>
#include <list>
#include <deque>
#include <stack>
#include <set>
#include <map>
#include <cstdio>
#include <cstdlib>
#include <cassert>
#include <cstring>
#include <cmath>
using namespace std;
// }}}
// pre-written code {{{
#define REP(i,n) for(int i=0;i<(int)(n);++i)
#define RREP(i,a,b) for(int i=(int)(a);i<(int)(b);++i)
#define FOR(i,c) for(__typeof((c).begin()) i=(c).begin();i!=(c).end();++i)
#define LET(x,a) __typeof(a) x(a)
//#define IFOR(i,it,c) for(__typeof((c).begin())it=(c).begin();it!=(c).end();++it,++i)
#define ALL(c) (c).begin(), (c).end()
#define MP make_pair

#define EXIST(e,s) ((s).find(e)!=(s).end())

#define RESET(a) memset((a),0,sizeof(a))
#define SET(a) memset((a),-1,sizeof(a))
#define PB push_back
#define DEC(it,command) __typeof(command) it=command

const int INF=0x3f3f3f3f;

typedef long long Int;
typedef unsigned long long uInt;
#ifdef __MINGW32__
typedef double rn;
#else
typedef long double rn;
#endif

typedef pair<int,int> pii;

/*
#ifdef MYDEBUG
#include"debug.h"
#include"print.h"
#endif
*/
// }}}

const Int m = 1, M = 1000000000000000000ll;

int main(){
	int n;
	cin>>n;
	vector<Int> b(n);
	REP(i,n)cin>>b[i];
	pair<Int,Int> v(0,1);//const, a_0
	Int a;
	REP(i,n){
		//judge
		pair<Int,Int> v2;
		if(i%2==0){
			v2.first = -v.first;
			v2.second = -v.second;
			v2.first+=b[i];
		}else{
			v2.first = v.first;
			v2.second = v.second;
			v2.first-=b[i];
		}
//		cerr<<v2.first<<" "<<v2.second<<endl;
		v = v2;
		Int l,r;
		if(v.second==1){
			l = m-v.first, r = M-v.first;
			l = max(m,l);
			r = min(M,r);
			if(l>r){
				cout<<-1<<endl;
				return 0;
			}
		}else if(v.second==-1){
			l = -(M-v.first), r = -(m-v.first);
			l = max(m,l);
			r = min(M,r);
			if(l>r){
				cout<<-1<<endl;
				return 0;
			}
		}
		if(i==n-1)a = l;
	}
	cout<<n+1<<endl;
	REP(i,n){
		cout<<a<<endl;
		if(i%2==0){
			a = b[i] - a;
		}else{
			a = a - b[i];
		}
	}
	cout<<a<<endl;

	return 0;
}
0