結果

問題 No.451 575
ユーザー fal_rndfal_rnd
提出日時 2016-12-02 00:56:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 653 bytes
コンパイル時間 2,065 ms
コンパイル使用メモリ 75,480 KB
実行使用メモリ 60,024 KB
最終ジャッジ日時 2024-05-09 17:51:21
合計ジャッジ時間 15,442 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,324 KB
testcase_01 AC 121 ms
41,140 KB
testcase_02 AC 115 ms
41,724 KB
testcase_03 AC 122 ms
41,588 KB
testcase_04 AC 114 ms
41,448 KB
testcase_05 AC 182 ms
44,336 KB
testcase_06 AC 253 ms
47,884 KB
testcase_07 AC 644 ms
49,408 KB
testcase_08 AC 114 ms
41,188 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 737 ms
54,384 KB
testcase_14 AC 140 ms
41,680 KB
testcase_15 AC 182 ms
43,248 KB
testcase_16 AC 274 ms
47,784 KB
testcase_17 AC 576 ms
48,508 KB
testcase_18 AC 601 ms
49,112 KB
testcase_19 AC 543 ms
48,720 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 117 ms
41,208 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 123 ms
41,756 KB
testcase_26 AC 122 ms
41,588 KB
testcase_27 AC 156 ms
41,832 KB
testcase_28 AC 163 ms
42,252 KB
testcase_29 AC 231 ms
46,456 KB
testcase_30 AC 669 ms
49,332 KB
testcase_31 AC 116 ms
41,532 KB
testcase_32 AC 332 ms
49,192 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.print(sb);
		}
	}
}
0