結果

問題 No.451 575
ユーザー fal_rndfal_rnd
提出日時 2016-12-04 00:48:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 861 bytes
コンパイル時間 1,978 ms
コンパイル使用メモリ 78,328 KB
実行使用メモリ 69,276 KB
最終ジャッジ日時 2024-05-09 19:10:18
合計ジャッジ時間 17,083 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,876 KB
testcase_01 AC 120 ms
52,808 KB
testcase_02 AC 114 ms
53,372 KB
testcase_03 AC 126 ms
53,736 KB
testcase_04 AC 129 ms
54,192 KB
testcase_05 AC 199 ms
56,960 KB
testcase_06 AC 259 ms
59,120 KB
testcase_07 WA -
testcase_08 AC 119 ms
53,900 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,285 ms
67,400 KB
testcase_14 AC 128 ms
54,120 KB
testcase_15 AC 199 ms
56,764 KB
testcase_16 AC 282 ms
59,300 KB
testcase_17 AC 676 ms
60,336 KB
testcase_18 AC 658 ms
59,796 KB
testcase_19 AC 574 ms
60,852 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 122 ms
53,936 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 131 ms
54,064 KB
testcase_26 AC 118 ms
53,144 KB
testcase_27 WA -
testcase_28 AC 167 ms
54,668 KB
testcase_29 AC 233 ms
58,456 KB
testcase_30 AC 662 ms
59,784 KB
testcase_31 AC 106 ms
52,980 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package src;

import java.util.*;
class B{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		long[] out = new long[s.nextInt()+1];
		long buf=1;
		out[0]=buf;

		boolean f=false;
		for(int i=1;i<out.length;++i) {
			if(i%2==0) {
				buf=(out[i]=buf-Long.parseLong(s.next()));
			}else {
				buf=(out[i]=Long.parseLong(s.next())-buf);
			}
			f|=buf<=0;
		}

		long b1=Long.MAX_VALUE;
		long b2=Long.MAX_VALUE;
		for(int i=0;i<out.length;i++) {
			if(i%3==0)
				b1=Math.min(b1, out[i]);
			else
				b2=Math.min(b2, out[i]);
		}

		if(f){
			if(b1+b2-1<=0){
				System.out.println(-1);
				return;
			}
			long b = -b2+1;
			for(int i=0;i<out.length;i++) {
				if(i%3==0)
					out[i]+=b;
				else
					out[i]-=b;
			}
		}

		System.out.println(out.length);
		for(int i=0;i<out.length;i++)
			System.out.println(out[i]);
	}
}
0