結果

問題 No.1017 Reiwa Sequence
ユーザー kyo1kyo1
提出日時 2020-06-19 04:02:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,002 bytes
コンパイル時間 2,018 ms
コンパイル使用メモリ 205,084 KB
実行使用メモリ 145,948 KB
最終ジャッジ日時 2024-07-03 13:10:12
合計ジャッジ時間 46,181 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
97,040 KB
testcase_01 AC 43 ms
96,944 KB
testcase_02 AC 35 ms
96,924 KB
testcase_03 AC 35 ms
97,032 KB
testcase_04 AC 36 ms
96,964 KB
testcase_05 AC 35 ms
96,956 KB
testcase_06 AC 35 ms
96,860 KB
testcase_07 AC 35 ms
96,932 KB
testcase_08 AC 35 ms
97,004 KB
testcase_09 AC 37 ms
96,952 KB
testcase_10 AC 163 ms
107,704 KB
testcase_11 AC 37 ms
97,084 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 43 ms
96,920 KB
testcase_15 AC 45 ms
97,060 KB
testcase_16 AC 44 ms
97,072 KB
testcase_17 AC 48 ms
97,504 KB
testcase_18 AC 44 ms
97,088 KB
testcase_19 AC 181 ms
113,368 KB
testcase_20 AC 192 ms
113,348 KB
testcase_21 AC 195 ms
113,420 KB
testcase_22 AC 206 ms
113,180 KB
testcase_23 AC 185 ms
113,400 KB
testcase_24 AC 190 ms
113,272 KB
testcase_25 AC 179 ms
113,268 KB
testcase_26 AC 170 ms
113,308 KB
testcase_27 AC 185 ms
113,300 KB
testcase_28 AC 171 ms
113,272 KB
testcase_29 AC 179 ms
113,152 KB
testcase_30 AC 175 ms
112,976 KB
testcase_31 AC 173 ms
112,280 KB
testcase_32 AC 166 ms
111,416 KB
testcase_33 AC 139 ms
109,324 KB
testcase_34 AC 174 ms
109,304 KB
testcase_35 AC 120 ms
109,084 KB
testcase_36 AC 152 ms
109,240 KB
testcase_37 AC 178 ms
111,368 KB
testcase_38 AC 152 ms
111,380 KB
testcase_39 AC 166 ms
111,320 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 44 ms
97,032 KB
testcase_52 AC 175 ms
113,392 KB
testcase_53 AC 160 ms
113,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int N;
  cin >> N;
  vector<int> A(N);
  for (int i = 0; i < N; i++) {
    cin >> A[i];
  }
  int M = min(N, 22);
  vector<vector<int>> masks(4000000);
  for (int mask = 0; mask < (1 << M); mask++) {
    int sum = 0;
    for (int i = 0; i < M; i++) {
      if ((mask >> i) & 1) sum += A[i];
    }
    masks[sum].emplace_back(mask);
  }
  for (int i = 1; i < (int)masks.size(); i++) {
    if ((int)masks[i].size() < 2) continue;
    int plus = masks[i][0], minus = masks[i][1];
    cout << "Yes" << '\n';
    for (int j = 0; j < M; j++) {
      if (j != 0) cout << ' ';
      if ((plus >> j) & 1) {
        cout << A[j];
      } else if ((minus >> j) & 1) {
        cout << -A[j];
      } else {
        cout << 0;
      }
    }
    for (int j = M; j < N; j++) {
      if (j != N - 1) cout << ' ';
      cout << 0;
    }
    cout << '\n';
    return 0;
  }
  cout << "No" << '\n';
  return 0;
}
0