結果

問題 No.1017 Reiwa Sequence
ユーザー kyo1kyo1
提出日時 2020-06-19 03:35:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 902 bytes
コンパイル時間 2,013 ms
コンパイル使用メモリ 206,284 KB
実行使用メモリ 145,992 KB
最終ジャッジ日時 2024-07-03 13:08:21
合計ジャッジ時間 46,115 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
97,044 KB
testcase_01 AC 44 ms
96,968 KB
testcase_02 AC 34 ms
97,024 KB
testcase_03 AC 34 ms
96,980 KB
testcase_04 AC 34 ms
97,032 KB
testcase_05 AC 36 ms
97,044 KB
testcase_06 AC 34 ms
96,952 KB
testcase_07 AC 34 ms
96,860 KB
testcase_08 AC 33 ms
96,968 KB
testcase_09 AC 36 ms
97,100 KB
testcase_10 AC 147 ms
107,720 KB
testcase_11 AC 37 ms
97,044 KB
testcase_12 AC 889 ms
138,124 KB
testcase_13 AC 861 ms
137,788 KB
testcase_14 AC 46 ms
97,048 KB
testcase_15 AC 46 ms
97,176 KB
testcase_16 AC 46 ms
97,000 KB
testcase_17 AC 48 ms
97,496 KB
testcase_18 AC 44 ms
96,860 KB
testcase_19 AC 164 ms
113,300 KB
testcase_20 AC 174 ms
113,308 KB
testcase_21 AC 172 ms
113,452 KB
testcase_22 AC 176 ms
113,328 KB
testcase_23 AC 167 ms
113,316 KB
testcase_24 AC 169 ms
113,240 KB
testcase_25 AC 161 ms
113,372 KB
testcase_26 AC 158 ms
113,368 KB
testcase_27 AC 158 ms
113,208 KB
testcase_28 AC 157 ms
113,248 KB
testcase_29 AC 163 ms
113,072 KB
testcase_30 AC 160 ms
112,964 KB
testcase_31 AC 156 ms
112,320 KB
testcase_32 AC 153 ms
111,436 KB
testcase_33 AC 133 ms
109,244 KB
testcase_34 AC 152 ms
109,152 KB
testcase_35 AC 113 ms
109,272 KB
testcase_36 AC 138 ms
109,300 KB
testcase_37 AC 155 ms
111,292 KB
testcase_38 AC 140 ms
111,352 KB
testcase_39 AC 152 ms
111,200 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 AC 356 ms
116,988 KB
testcase_51 AC 45 ms
96,984 KB
testcase_52 AC 163 ms
113,428 KB
testcase_53 AC 145 ms
113,352 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 = 1; 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 = 0; 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 < N; j++) {
      if ((plus >> j) & 1) {
        cout << A[j];
      } else if ((minus >> j) & 1) {
        cout << -A[j];
      } else {
        cout << 0;
      }
      cout << (j == N - 1 ? '\n' : ' ');
    }
    return 0;
  }
  cout << "No" << '\n';
  return 0;
}
0