結果

問題 No.451 575
ユーザー fal_rndfal_rnd
提出日時 2016-12-02 00:20:29
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 574 bytes
コンパイル時間 2,370 ms
コンパイル使用メモリ 74,240 KB
実行使用メモリ 43,896 KB
最終ジャッジ日時 2024-05-09 16:56:15
合計ジャッジ時間 10,408 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
41,172 KB
testcase_01 AC 105 ms
40,940 KB
testcase_02 AC 103 ms
41,232 KB
testcase_03 AC 107 ms
40,788 KB
testcase_04 AC 111 ms
40,996 KB
testcase_05 AC 171 ms
43,896 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 105 ms
41,368 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 107 ms
41,256 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[]
			out = new long[s.nextInt()+1];
		out[0]=1;
		for(int i=0;i<out.length-1;++i) {
			if(i%2==0) {
				out[i+1]=Integer.parseInt(s.next())-out[i];
			}else {
				out[i+1]=out[i]-Integer.parseInt(s.next());
			}
		}
		boolean f=false;
		for(int i=0;i<out.length;i++)
			f|=(out[i]<=0);
		if(f)
			System.out.println(-1);
		else {
			System.out.println(out.length);
			for(int i=0;i<out.length;i++)
				System.out.println(out[i]);
		}
	}
}
0