結果

問題 No.451 575
ユーザー kuuso1kuuso1
提出日時 2016-12-02 00:36:45
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,571 bytes
コンパイル時間 3,036 ms
コンパイル使用メモリ 107,264 KB
実行使用メモリ 40,760 KB
最終ジャッジ日時 2024-05-09 17:05:02
合計ジャッジ時間 5,278 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
17,664 KB
testcase_01 AC 25 ms
17,664 KB
testcase_02 AC 23 ms
17,664 KB
testcase_03 AC 23 ms
17,920 KB
testcase_04 AC 23 ms
17,792 KB
testcase_05 AC 27 ms
19,840 KB
testcase_06 AC 35 ms
26,752 KB
testcase_07 AC 106 ms
40,748 KB
testcase_08 AC 24 ms
18,048 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 138 ms
40,504 KB
testcase_14 AC 23 ms
17,792 KB
testcase_15 AC 26 ms
19,072 KB
testcase_16 AC 36 ms
25,472 KB
testcase_17 AC 105 ms
40,760 KB
testcase_18 AC 104 ms
40,388 KB
testcase_19 AC 77 ms
37,636 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 25 ms
17,792 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 25 ms
17,920 KB
testcase_26 AC 22 ms
17,920 KB
testcase_27 AC 23 ms
18,048 KB
testcase_28 AC 24 ms
17,848 KB
testcase_29 AC 31 ms
22,656 KB
testcase_30 AC 100 ms
40,756 KB
testcase_31 AC 23 ms
17,664 KB
testcase_32 AC 48 ms
34,560 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;

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

class Sol{
	public void Solve(){
		
		long lmin = 1;
		long rmax = (long)1e18;
		long l,r,c;
		
		l = lmin;
		r = rmax+1;
		while(r-l>0){
			c = (l+r)/2;
			long[] A = new long[N+1];
			A[0] = c;
			int of = 0;
			long sig = 1;
			for(int i=1;i<=N;i++){
				A[i] = (B[i-1]-A[i-1])*sig;
				if(A[i] > rmax){
					of = 1;
					break;
				}
				if(A[i] < lmin){
					of = -1;
					break;
				}
				sig *= -1;
			}
			//Console.WriteLine("c:{0},of:{1}",c,of);
			if(of == 0){
				Console.WriteLine(N+1);
				Console.WriteLine(String.Join("\n",A));
				return;
			}
			if(of == 1){
				l = c;
			}else{
				r = c;
			}
			
		}
		Console.WriteLine(-1);
	}
	int N;
	long[] B;
	public Sol(){
		N = ri();
		B = new long[N];
		for(int i=0;i<N;i++) B[i] = 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