結果

問題 No.451 575
ユーザー kuuso1kuuso1
提出日時 2016-12-02 00:47:23
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,388 bytes
コンパイル時間 1,583 ms
コンパイル使用メモリ 108,160 KB
実行使用メモリ 36,608 KB
最終ジャッジ日時 2024-05-09 17:45:24
合計ジャッジ時間 8,393 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 160 ms
36,352 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 30 ms
18,944 KB
testcase_15 AC 33 ms
20,556 KB
testcase_16 AC 48 ms
23,808 KB
testcase_17 AC 162 ms
36,608 KB
testcase_18 AC 156 ms
36,608 KB
testcase_19 AC 109 ms
32,000 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 31 ms
18,816 KB
testcase_27 AC 31 ms
18,944 KB
testcase_28 AC 30 ms
19,328 KB
testcase_29 AC 45 ms
23,040 KB
testcase_30 AC 155 ms
36,480 KB
testcase_31 WA -
testcase_32 AC 65 ms
25,216 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]) * 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