結果

問題 No.451 575
ユーザー fal_rndfal_rnd
提出日時 2016-12-02 00:55:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 655 bytes
コンパイル時間 2,298 ms
コンパイル使用メモリ 74,680 KB
実行使用メモリ 64,164 KB
最終ジャッジ日時 2024-05-09 17:49:38
合計ジャッジ時間 15,656 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,312 KB
testcase_01 AC 112 ms
53,512 KB
testcase_02 AC 124 ms
54,152 KB
testcase_03 AC 123 ms
54,572 KB
testcase_04 AC 121 ms
53,920 KB
testcase_05 AC 192 ms
56,968 KB
testcase_06 AC 258 ms
58,868 KB
testcase_07 AC 599 ms
60,028 KB
testcase_08 AC 120 ms
54,144 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 720 ms
64,164 KB
testcase_14 AC 127 ms
54,664 KB
testcase_15 AC 185 ms
56,664 KB
testcase_16 AC 267 ms
59,152 KB
testcase_17 AC 658 ms
59,668 KB
testcase_18 AC 672 ms
59,628 KB
testcase_19 AC 574 ms
59,740 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 115 ms
54,180 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 108 ms
53,224 KB
testcase_26 AC 120 ms
54,140 KB
testcase_27 AC 153 ms
54,028 KB
testcase_28 AC 164 ms
54,392 KB
testcase_29 AC 240 ms
58,456 KB
testcase_30 AC 597 ms
59,608 KB
testcase_31 AC 115 ms
54,136 KB
testcase_32 AC 300 ms
60,000 KB
権限があれば一括ダウンロードができます

ソースコード

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]=Long.parseLong(s.next())-out[i];
			}else {
				out[i+1]=out[i]-Long.parseLong(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);
			StringBuilder sb= new StringBuilder();
			for(int i=0;i<out.length;i++) {
				sb.append(out[i]);
				sb.append("\n");
			}
			System.out.println(sb);
		}
	}
}
0