結果

問題 No.451 575
ユーザー ei1333333ei1333333
提出日時 2016-12-02 00:43:06
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 788 bytes
コンパイル時間 1,463 ms
コンパイル使用メモリ 159,208 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-09 17:41:31
合計ジャッジ時間 5,433 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 2 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 10 ms
5,376 KB
testcase_07 AC 71 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 206 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 13 ms
5,376 KB
testcase_17 AC 70 ms
5,376 KB
testcase_18 AC 70 ms
5,376 KB
testcase_19 AC 48 ms
5,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
5,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 9 ms
5,376 KB
testcase_30 AC 70 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 16 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

typedef long long int64;
int64 RANGE = 1000000000000000000LL;

int main()
{
  int N;
  int64 B[100000];

  cin >> N;

  int64 xs = 1;
  bool f = false;
  for(int i = 0; i < N; i++) {
    cin >> B[i];
    if(i & 1) xs = xs - B[i];
    else xs = B[i] - xs;
    if(xs <= 0 || xs > RANGE) f = true;
  }

  int64 gs = B[0] - 1;
  bool g = false;
  for(int i = 0; i < N; i++) {
    if(i & 1) gs = gs - B[i];
    else gs = B[i] - gs;
    if(gs <= 0 || gs > RANGE) g = true;
  }

  if(f && g) {
    cout << -1 << endl;
    return (0);
  }

  cout << N + 1 << endl;
  int64 rev = 1;
  if(f) rev = B[0] - 1;
  cout << rev << endl;
  for(int i = 0; i < N; i++) {
    if(i & 1) rev = rev - B[i];
    else rev = B[i] - rev;
    cout << rev << endl;
  }
}
0