結果

問題 No.2561 みんな大好きmod 998
ユーザー YukiYuki
提出日時 2023-12-07 18:54:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,180 ms / 4,000 ms
コード長 789 bytes
コンパイル時間 1,501 ms
コンパイル使用メモリ 169,868 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-27 02:16:58
合計ジャッジ時間 17,182 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 12 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1,150 ms
6,940 KB
testcase_04 AC 1,174 ms
6,940 KB
testcase_05 AC 1,162 ms
6,940 KB
testcase_06 AC 1,174 ms
6,940 KB
testcase_07 AC 118 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 151 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 31 ms
6,944 KB
testcase_14 AC 62 ms
6,940 KB
testcase_15 AC 1,180 ms
6,944 KB
testcase_16 AC 120 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 636 ms
6,940 KB
testcase_20 AC 10 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 289 ms
6,940 KB
testcase_27 AC 1,168 ms
6,940 KB
testcase_28 AC 527 ms
6,940 KB
testcase_29 AC 46 ms
6,940 KB
testcase_30 AC 112 ms
6,940 KB
testcase_31 AC 357 ms
6,944 KB
testcase_32 AC 951 ms
6,940 KB
testcase_33 AC 46 ms
6,940 KB
testcase_34 AC 1,168 ms
6,944 KB
testcase_35 AC 248 ms
6,940 KB
testcase_36 AC 255 ms
6,940 KB
testcase_37 AC 37 ms
6,944 KB
testcase_38 AC 149 ms
6,940 KB
testcase_39 AC 107 ms
6,940 KB
testcase_40 AC 109 ms
6,944 KB
testcase_41 AC 147 ms
6,944 KB
testcase_42 AC 530 ms
6,948 KB
testcase_43 AC 38 ms
6,940 KB
testcase_44 AC 80 ms
6,940 KB
testcase_45 AC 621 ms
6,944 KB
testcase_46 AC 486 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rep2(i, s, n) for (int i = (int)s; i < (int)(n); i++)
using namespace std;
using ll = long long;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

int main() {
  int N, K;
  cin >> N >> K;
  vector<int> A(N);
  rep(i, N) cin >> A[i];

  ll ans = 0;
  for (int bits = 0; bits < (1 << N); bits++) {
    if (__builtin_popcount(bits) != K) continue;
    ll sum = 0;
    for (int i = 0; i < N; i++) {
      if (bits & (1 << i)) {
        sum += A[i];
      }
    }
    if (sum % 998244353 <= sum % 998) {
      ans++;
      ans %= 998;
    }
  }

  cout << ans << endl;
}
0