結果

問題 No.2561 みんな大好きmod 998
ユーザー a01sa01to
提出日時 2023-12-02 14:40:43
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,558 ms / 4,000 ms
コード長 585 bytes
コンパイル時間 3,181 ms
コンパイル使用メモリ 246,020 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-26 17:08:19
合計ジャッジ時間 23,792 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 44
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
  #define _GLIBCXX_DEBUG
#else
  #define Debug(...) void(0)
#endif
using ll = long long;
using ull = unsigned long long;
#define rep(i, n) for (int i = 0; i < (n); ++i)

int main() {
  int n,k;cin>>n>>k;
  vector<ll> a(n);
  rep(i,n) cin >> a[i];
  int ans = 0;
  rep(bit, 1 << n) {
    if (popcount(ull(bit)) != k) continue;
    ll sum = 0;
    rep(i,n) {
      if (bit & (1 << i))  sum += a[i];
    }
    if (sum % 998244353 <= sum % 998) ans++;
  }
  cout << ans % 998 << endl;
  return 0;
}
0