結果

問題 No.451 575
ユーザー fal_rndfal_rnd
提出日時 2016-12-04 01:15:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,140 ms / 2,000 ms
コード長 862 bytes
コンパイル時間 2,364 ms
コンパイル使用メモリ 78,000 KB
実行使用メモリ 57,580 KB
最終ジャッジ日時 2024-05-09 19:28:11
合計ジャッジ時間 15,762 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
40,956 KB
testcase_01 AC 105 ms
41,044 KB
testcase_02 AC 101 ms
41,216 KB
testcase_03 AC 100 ms
41,360 KB
testcase_04 AC 103 ms
40,828 KB
testcase_05 AC 166 ms
44,372 KB
testcase_06 AC 223 ms
47,364 KB
testcase_07 AC 586 ms
50,108 KB
testcase_08 AC 105 ms
41,128 KB
testcase_09 AC 162 ms
42,492 KB
testcase_10 AC 466 ms
49,068 KB
testcase_11 AC 937 ms
56,832 KB
testcase_12 AC 1,128 ms
57,512 KB
testcase_13 AC 1,113 ms
57,580 KB
testcase_14 AC 111 ms
41,292 KB
testcase_15 AC 164 ms
43,392 KB
testcase_16 AC 237 ms
47,476 KB
testcase_17 AC 601 ms
50,036 KB
testcase_18 AC 600 ms
50,184 KB
testcase_19 AC 510 ms
49,304 KB
testcase_20 AC 229 ms
45,768 KB
testcase_21 AC 188 ms
42,600 KB
testcase_22 AC 105 ms
41,312 KB
testcase_23 AC 1,140 ms
57,488 KB
testcase_24 AC 648 ms
57,000 KB
testcase_25 AC 110 ms
41,356 KB
testcase_26 AC 107 ms
41,288 KB
testcase_27 AC 134 ms
41,476 KB
testcase_28 AC 148 ms
42,092 KB
testcase_29 AC 254 ms
47,140 KB
testcase_30 AC 589 ms
50,032 KB
testcase_31 AC 89 ms
39,892 KB
testcase_32 AC 305 ms
49,060 KB
権限があれば一括ダウンロードができます

ソースコード

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]=Long.parseLong(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