結果

問題 No.451 575
ユーザー fal_rndfal_rnd
提出日時 2016-12-02 20:06:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 628 bytes
コンパイル時間 1,895 ms
コンパイル使用メモリ 77,288 KB
実行使用メモリ 55,604 KB
最終ジャッジ日時 2024-05-09 18:58:32
合計ジャッジ時間 15,218 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,684 KB
testcase_01 AC 116 ms
40,748 KB
testcase_02 AC 115 ms
41,032 KB
testcase_03 AC 127 ms
41,296 KB
testcase_04 AC 108 ms
41,184 KB
testcase_05 AC 181 ms
43,908 KB
testcase_06 AC 251 ms
47,904 KB
testcase_07 AC 626 ms
49,040 KB
testcase_08 AC 116 ms
40,480 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 789 ms
55,604 KB
testcase_14 AC 144 ms
41,396 KB
testcase_15 AC 203 ms
43,216 KB
testcase_16 AC 258 ms
47,804 KB
testcase_17 AC 631 ms
48,904 KB
testcase_18 AC 619 ms
49,336 KB
testcase_19 AC 562 ms
48,248 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 134 ms
41,416 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 137 ms
41,924 KB
testcase_26 AC 119 ms
41,444 KB
testcase_27 AC 152 ms
41,808 KB
testcase_28 AC 167 ms
42,060 KB
testcase_29 AC 237 ms
46,644 KB
testcase_30 AC 689 ms
48,600 KB
testcase_31 AC 121 ms
41,128 KB
testcase_32 AC 400 ms
48,496 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;
		long buf=1;
		boolean f=false;
		for(int i=0;i<out.length-1;++i) {
			if(i%2==0) {
				buf=(out[i+1]=Long.parseLong(s.next())-buf);
			}else {
				buf=(out[i+1]=buf-Long.parseLong(s.next()));
			}
			f|=(buf<=0);
		}
		if(f)
			System.out.println(-1);
		else {
			System.out.println(out.length);
			StringBuilder sb = new StringBuilder(out.length*5);
			for(int i=0;i<out.length;i++)
				sb.append(out[i]+"\n");
			System.out.print(sb);
		}
	}
}
0