結果
問題 | No.451 575 |
ユーザー | square1001 |
提出日時 | 2017-03-07 19:56:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 709 bytes |
コンパイル時間 | 1,515 ms |
コンパイル使用メモリ | 166,080 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-23 17:21:07 |
合計ジャッジ時間 | 6,627 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 10 ms
5,376 KB |
testcase_11 | AC | 27 ms
5,376 KB |
testcase_12 | AC | 34 ms
5,376 KB |
testcase_13 | AC | 34 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 3 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 34 ms
5,376 KB |
testcase_24 | AC | 18 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const long long m = 1000000000000000000; int n; long long b[100009], a[100009]; int main() { scanf("%d", &n); for(int i = 0; i < n; i++) scanf("%lld", &b[i]); long long l = 1, r = m; for(int i = 0; i < n; i++) { if(i & 1) { l = max(1LL, l - b[i]); r = max(1LL, min(m, r - b[i])); } else { long long t = l; l = max(1LL, b[i] - r); r = max(1LL, min(m, b[i] - t)); } //cout << l << ' ' << r << endl; } if(l > r) puts("-1"); else { printf("%d\n", n + 1); for(int i = n; i >= 0; i--) { a[i] = l; if((i + 1) & 1) l += b[i - 1]; else l = b[i - 1] - l; } for(int i = 0; i <= n; i++) printf("%lld\n", a[i]); } return 0; }