結果

問題 No.2561 みんな大好きmod 998
ユーザー VvyLwVvyLw
提出日時 2023-12-02 17:32:41
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,467 bytes
コンパイル時間 1,527 ms
コンパイル使用メモリ 107,192 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-26 21:15:07
合計ジャッジ時間 8,378 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 466 ms
5,376 KB
testcase_05 AC 463 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 74 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 WA -
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
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 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 156 ms
5,376 KB
testcase_27 AC 460 ms
5,376 KB
testcase_28 AC 309 ms
5,376 KB
testcase_29 AC 16 ms
5,376 KB
testcase_30 AC 15 ms
5,376 KB
testcase_31 AC 88 ms
5,376 KB
testcase_32 AC 468 ms
5,376 KB
testcase_33 AC 17 ms
5,376 KB
testcase_34 AC 466 ms
5,376 KB
testcase_35 AC 163 ms
5,376 KB
testcase_36 AC 152 ms
5,376 KB
testcase_37 AC 24 ms
5,376 KB
testcase_38 AC 72 ms
5,376 KB
testcase_39 AC 15 ms
5,376 KB
testcase_40 AC 16 ms
5,376 KB
testcase_41 AC 73 ms
5,376 KB
testcase_42 AC 294 ms
5,376 KB
testcase_43 AC 24 ms
5,376 KB
testcase_44 AC 34 ms
5,376 KB
testcase_45 AC 197 ms
5,376 KB
testcase_46 AC 260 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <iostream>
#include <vector>
#include <numeric>
int main() {
  int n, k, cnt = 0;
  std::cin >> n >> k;
  std::vector<int> a(n);
  for(auto &el: a) {
    std::cin >> el;
  }
  std::vector<std::vector<int>> pat, ano;
  for(int i = 0; i < 1 << (n / 2); ++i) {
    std::vector<int> x;
    for(int j = 0; j < n / 2; ++j) {
      if(i >> j & 1) {
        x.emplace_back(a[j]);
      }
    }
    if(std::ssize(x) == k) pat.emplace_back(x);
    /*if(std::ssize(x) == k) {
      const auto res = std::accumulate(x.begin(), x.end(), 0LL);
      if(res % 998 >= res % 998244353) {
        cnt++;
        cnt %= 998;
      }
    }//*/
  }
  for(int i = 0; i < 1 << (n - n / 2); ++i) {
    std::vector<int> x;
    for(int j = 0; j < n - n / 2; ++j) {
      if(i >> j & 1) {
        x.emplace_back(a[n / 2 + j]);
      }
    }
    if(std::ssize(x) == k) ano.emplace_back(x);
    /* {
      const auto res = std::accumulate(x.begin(), x.end(), 0LL);
      if(res % 998 >= res % 998244353) {
        cnt++;
        cnt %= 998;
      }
    }//*/
  }
  for(const auto &l: pat) {
    for(const auto &r: ano) {
      auto v = l;
      v.insert(v.end(), r.cbegin(), r.cend());
      if(std::ssize(v) == k) {
        const auto res = std::accumulate(v.begin(), v.end(), 0LL);
        if(res % 998 >= res % 998244353) {
          cnt++;
          cnt %= 998;
        }
      }
    }
  }
  std::cout << cnt << '\n';
}
0