結果

問題 No.2561 みんな大好きmod 998
コンテスト
ユーザー a01sa01to
提出日時 2023-12-02 14:40:43
言語 C++23
(gcc 15.3.0 + boost 1.92.0 + ac-library)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 832 ms / 4,000 ms
+ 309µs
コード長 585 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,318 ms
コンパイル使用メモリ 332,372 KB
実行使用メモリ 9,784 KB
最終ジャッジ日時 2026-09-05 00:39:58
合計ジャッジ時間 14,362 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge4_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 44
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#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