結果
問題 | No.451 575 |
ユーザー | crazybbb3 |
提出日時 | 2016-12-05 20:12:27 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 425 ms / 2,000 ms |
コード長 | 2,600 bytes |
コンパイル時間 | 2,423 ms |
コンパイル使用メモリ | 78,660 KB |
実行使用メモリ | 50,456 KB |
最終ジャッジ日時 | 2024-05-09 19:31:33 |
合計ジャッジ時間 | 9,268 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
37,136 KB |
testcase_01 | AC | 52 ms
37,224 KB |
testcase_02 | AC | 51 ms
37,424 KB |
testcase_03 | AC | 52 ms
36,880 KB |
testcase_04 | AC | 52 ms
36,852 KB |
testcase_05 | AC | 113 ms
39,972 KB |
testcase_06 | AC | 124 ms
41,916 KB |
testcase_07 | AC | 243 ms
47,260 KB |
testcase_08 | AC | 52 ms
37,424 KB |
testcase_09 | AC | 96 ms
38,288 KB |
testcase_10 | AC | 225 ms
44,272 KB |
testcase_11 | AC | 337 ms
49,368 KB |
testcase_12 | AC | 395 ms
50,324 KB |
testcase_13 | AC | 425 ms
50,380 KB |
testcase_14 | AC | 52 ms
36,968 KB |
testcase_15 | AC | 114 ms
39,600 KB |
testcase_16 | AC | 149 ms
41,404 KB |
testcase_17 | AC | 240 ms
47,044 KB |
testcase_18 | AC | 245 ms
46,892 KB |
testcase_19 | AC | 207 ms
46,224 KB |
testcase_20 | AC | 143 ms
40,460 KB |
testcase_21 | AC | 96 ms
38,612 KB |
testcase_22 | AC | 49 ms
37,140 KB |
testcase_23 | AC | 414 ms
50,456 KB |
testcase_24 | AC | 293 ms
48,732 KB |
testcase_25 | AC | 50 ms
37,340 KB |
testcase_26 | AC | 50 ms
36,888 KB |
testcase_27 | AC | 56 ms
37,328 KB |
testcase_28 | AC | 79 ms
38,280 KB |
testcase_29 | AC | 122 ms
40,624 KB |
testcase_30 | AC | 242 ms
47,308 KB |
testcase_31 | AC | 50 ms
36,944 KB |
testcase_32 | AC | 156 ms
43,600 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.ArrayList; import java.util.StringTokenizer; public class Main { static BufferedReader in; static PrintWriter out; static StringTokenizer tok; void solve() throws IOException { int n = ni(); long[] b = nla(n); long l = 1; long h = b[0] - 1; for (int i = 0; i < n; i++) { if (i % 2 == 0) { long tl = b[i] - h; long th = b[i] - l; l = tl; h = th; } else { long tl = l - b[i]; long th = h - b[i]; l = tl; h = th; } if (h <= 0) { out.println(-1); return; } l = Math.max(l, 1); } ArrayList<Long> list = new ArrayList<>(); list.add(h); for (int i = n - 1; i >= 0; i--) { if (i % 2 == 0) { list.add(b[i] - list.get(n - 1 - i)); } else { list.add(b[i] + list.get(n - 1 - i)); } } out.println(n + 1); for (int i = n; i >= 0; i--) { out.println(list.get(i)); } } String ns() throws IOException { while (!tok.hasMoreTokens()) { tok = new StringTokenizer(in.readLine(), " "); } return tok.nextToken(); } int ni() throws IOException { return Integer.parseInt(ns()); } long nl() throws IOException { return Long.parseLong(ns()); } double nd() throws IOException { return Double.parseDouble(ns()); } String[] nsa(int n) throws IOException { String[] res = new String[n]; for (int i = 0; i < n; i++) { res[i] = ns(); } return res; } int[] nia(int n) throws IOException { int[] res = new int[n]; for (int i = 0; i < n; i++) { res[i] = ni(); } return res; } long[] nla(int n) throws IOException { long[] res = new long[n]; for (int i = 0; i < n; i++) { res[i] = nl(); } return res; } public static void main(String[] args) throws IOException { in = new BufferedReader(new InputStreamReader(System.in)); out = new PrintWriter(System.out); tok = new StringTokenizer(""); Main main = new Main(); main.solve(); out.close(); } }