結果

問題 No.451 575
ユーザー fal_rndfal_rnd
提出日時 2016-12-04 01:14:11
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 864 bytes
コンパイル時間 2,085 ms
コンパイル使用メモリ 77,656 KB
実行使用メモリ 56,852 KB
最終ジャッジ日時 2024-05-09 19:10:58
合計ジャッジ時間 11,163 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
53,852 KB
testcase_01 AC 119 ms
54,180 KB
testcase_02 AC 125 ms
54,280 KB
testcase_03 AC 131 ms
54,236 KB
testcase_04 AC 126 ms
54,252 KB
testcase_05 AC 198 ms
56,852 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 125 ms
54,112 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 121 ms
54,188 KB
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package src;

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

		for(int i=0;i<in.length;++i) {
			in[i]=Integer.parseInt(s.next());
			if(i%2==0) {
				buf=(out[i+1]=in[i]-buf);
			}else {
				buf=(out[i+1]=buf-in[i]);
			}
		}

		long b1=Long.MAX_VALUE;
		for(int i=0;i<out.length;i++) {
			if((i+1)%4>=2)
				b1=Math.min(b1, out[i]);
		}

		buf=b1;
		out[0]=buf;
		for(int i=0;i<in.length;++i) {
			if(i%2==0) {
				buf=(out[i+1]=in[i]-buf);
			}else {
				buf=(out[i+1]=buf-in[i]);
			}
		}


		for(int i=0;i<out.length;i++)
			if(out[i]<1) {
				System.out.println(-1);
				return;
			}
		System.out.println(out.length);
		for(int i=0;i<out.length;i++)
			System.out.println(out[i]);
	}
}
0