結果

問題 No.451 575
ユーザー kuuso1kuuso1
提出日時 2016-12-02 01:33:07
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 1,769 bytes
コンパイル時間 1,683 ms
コンパイル使用メモリ 107,264 KB
実行使用メモリ 41,320 KB
最終ジャッジ日時 2024-05-09 18:59:43
合計ジャッジ時間 6,624 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
18,304 KB
testcase_01 AC 33 ms
18,304 KB
testcase_02 AC 29 ms
18,048 KB
testcase_03 AC 33 ms
18,432 KB
testcase_04 AC 29 ms
17,792 KB
testcase_05 AC 33 ms
18,268 KB
testcase_06 AC 57 ms
23,296 KB
testcase_07 AC 169 ms
33,024 KB
testcase_08 AC 32 ms
18,304 KB
testcase_09 AC 36 ms
19,072 KB
testcase_10 AC 94 ms
27,392 KB
testcase_11 AC 213 ms
39,040 KB
testcase_12 AC 268 ms
41,320 KB
testcase_13 AC 265 ms
40,924 KB
testcase_14 AC 30 ms
17,920 KB
testcase_15 AC 36 ms
19,456 KB
testcase_16 AC 54 ms
22,912 KB
testcase_17 AC 165 ms
32,384 KB
testcase_18 AC 163 ms
32,512 KB
testcase_19 AC 121 ms
28,672 KB
testcase_20 AC 45 ms
21,260 KB
testcase_21 AC 36 ms
19,028 KB
testcase_22 AC 33 ms
18,176 KB
testcase_23 AC 269 ms
41,316 KB
testcase_24 AC 162 ms
33,664 KB
testcase_25 AC 33 ms
18,432 KB
testcase_26 AC 28 ms
17,920 KB
testcase_27 AC 30 ms
18,176 KB
testcase_28 AC 32 ms
18,304 KB
testcase_29 AC 46 ms
22,272 KB
testcase_30 AC 170 ms
32,384 KB
testcase_31 AC 31 ms
18,048 KB
testcase_32 AC 81 ms
24,704 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] = 0;
		BI sig = 1;
		for(int i=1;i<=N;i++){
			A[i] = (B[i-1] - A[i-1]) * sig;
			sig *= -1;
		}
		
		BI ll = lmin;
		BI rr = rmax;
		
		for(int i=0;i<=N;i++){
			if(i%4 == 0 || i%4 == 3){
				if(A[i]+rr > rmax) rr -= (A[i] + rr - rmax);
				if(A[i]+ll < lmin) ll += (lmin - (A[i] + ll));
			}else{
				if(A[i]-rr < lmin) rr -= (lmin - (A[i] - rr));
				if(A[i]-ll > rmax) ll += ((A[i] - ll) - rmax);
			}
		}
		
		if(lmin <= ll && ll <= rr && rr <= rmax){
			A[0] = ll;
			sig = 1;
			for(int i=1;i<=N;i++){
				A[i] = (B[i-1] - A[i-1]) * sig;
				sig *= -1;
			}
			Console.WriteLine(N+1);
			Console.WriteLine(String.Join("\n",A));
			return;
		}
		Console.WriteLine(-1);
	}
	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