結果

問題 No.451 575
ユーザー kuuso1kuuso1
提出日時 2016-12-02 00:48:59
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,389 bytes
コンパイル時間 892 ms
コンパイル使用メモリ 115,480 KB
実行使用メモリ 50,272 KB
最終ジャッジ日時 2024-05-09 17:47:56
合計ジャッジ時間 7,011 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
19,072 KB
testcase_01 AC 30 ms
19,584 KB
testcase_02 WA -
testcase_03 AC 30 ms
19,584 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 158 ms
37,760 KB
testcase_08 AC 29 ms
19,328 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 205 ms
42,156 KB
testcase_14 WA -
testcase_15 AC 37 ms
20,692 KB
testcase_16 AC 50 ms
24,192 KB
testcase_17 AC 155 ms
36,224 KB
testcase_18 WA -
testcase_19 AC 114 ms
32,000 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 31 ms
19,200 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 31 ms
19,584 KB
testcase_26 WA -
testcase_27 AC 30 ms
18,944 KB
testcase_28 AC 30 ms
19,584 KB
testcase_29 AC 41 ms
23,424 KB
testcase_30 AC 153 ms
36,224 KB
testcase_31 WA -
testcase_32 AC 70 ms
26,368 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Numerics;
using BI = System.Numerics.BigInteger;

class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		
		BI lmin = 1;
		BI rmax = (BI)1e18;
		
		BI[] A = new BI[N+1];
		A[0] = 1;
		BI sig = 1;
		for(int i=1;i<=N;i++){
			A[i] = (B[i-1] - A[i-1]) * sig;
			sig *= -1;
		}
		
		BI min = A.Min();
		for(int i=0;i<=N;i++) A[i] -= (min-1);
		if(A.Max() > rmax){
			Console.WriteLine(-1);
		}else{
			Console.WriteLine(N+1);
			Console.WriteLine(String.Join("\n",A));
		}
		
	}
	int N;
	BI[] B;
	public Sol(){
		N = ri();
		B = new BI[N];
		for(int i=0;i<N;i++) B[i] = (BI) rl();
	}

	static String rs(){return Console.ReadLine();}
	static int ri(){return int.Parse(Console.ReadLine());}
	static long rl(){return long.Parse(Console.ReadLine());}
	static double rd(){return double.Parse(Console.ReadLine());}
	static String[] rsa(char sep=' '){return Console.ReadLine().Split(sep);}
	static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));}
	static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));}
	static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));}
}
0