結果

問題 No.2561 みんな大好きmod 998
ユーザー Hydrogen332Hydrogen332
提出日時 2024-09-24 18:05:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 341 ms / 4,000 ms
コード長 637 bytes
コンパイル時間 2,236 ms
コンパイル使用メモリ 205,108 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-24 18:05:53
合計ジャッジ時間 7,521 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 13 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 341 ms
6,944 KB
testcase_04 AC 312 ms
6,944 KB
testcase_05 AC 314 ms
6,944 KB
testcase_06 AC 316 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 49 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 315 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,948 KB
testcase_19 AC 218 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 66 ms
6,944 KB
testcase_27 AC 327 ms
6,944 KB
testcase_28 AC 90 ms
6,944 KB
testcase_29 AC 24 ms
6,940 KB
testcase_30 AC 71 ms
6,940 KB
testcase_31 AC 145 ms
6,944 KB
testcase_32 AC 41 ms
6,944 KB
testcase_33 AC 25 ms
6,944 KB
testcase_34 AC 313 ms
6,940 KB
testcase_35 AC 25 ms
6,940 KB
testcase_36 AC 25 ms
6,940 KB
testcase_37 AC 11 ms
6,944 KB
testcase_38 AC 48 ms
6,940 KB
testcase_39 AC 70 ms
6,944 KB
testcase_40 AC 71 ms
6,944 KB
testcase_41 AC 73 ms
6,940 KB
testcase_42 AC 91 ms
6,944 KB
testcase_43 AC 11 ms
6,940 KB
testcase_44 AC 34 ms
6,944 KB
testcase_45 AC 219 ms
6,940 KB
testcase_46 AC 31 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, e) for (int i = (int)s; i < (int)e; i++)

int main() {
    cin.tie(nullptr);
    
    int N, K;
    cin >> N >> K;
    
    vector<ll> A(N);
    rep(i, 0, N) cin >> A[i];
    
    vector<bool> bit(N, false);
    rep(i, N - K, N) bit[i] = true;
    
    int ans = 0;
    do {
        ll sum = 0;
        rep(i, 0, N) if (bit[i]) sum += A[i];
        
        ll mod1 = sum % 998244353ll;
        ll mod2 = sum % 998;
        
        if (mod1 <= mod2) ans++;
    } while (next_permutation(bit.begin(), bit.end()));
    
    cout << ans % 998 << '\n';
}
0