結果

問題 No.2561 みんな大好きmod 998
ユーザー eve__fuyukieve__fuyuki
提出日時 2023-12-03 23:01:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 250 ms / 4,000 ms
コード長 835 bytes
コンパイル時間 2,034 ms
コンパイル使用メモリ 206,412 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-26 22:22:30
合計ジャッジ時間 6,034 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 12 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 250 ms
5,376 KB
testcase_04 AC 239 ms
5,376 KB
testcase_05 AC 245 ms
5,376 KB
testcase_06 AC 235 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 40 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 241 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 171 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 55 ms
5,376 KB
testcase_27 AC 247 ms
5,376 KB
testcase_28 AC 72 ms
6,944 KB
testcase_29 AC 21 ms
6,940 KB
testcase_30 AC 60 ms
6,940 KB
testcase_31 AC 129 ms
6,940 KB
testcase_32 AC 32 ms
6,940 KB
testcase_33 AC 21 ms
6,940 KB
testcase_34 AC 236 ms
6,940 KB
testcase_35 AC 19 ms
6,940 KB
testcase_36 AC 19 ms
6,940 KB
testcase_37 AC 10 ms
6,940 KB
testcase_38 AC 39 ms
6,940 KB
testcase_39 AC 60 ms
6,944 KB
testcase_40 AC 60 ms
6,940 KB
testcase_41 AC 38 ms
6,940 KB
testcase_42 AC 72 ms
6,940 KB
testcase_43 AC 10 ms
6,940 KB
testcase_44 AC 28 ms
6,944 KB
testcase_45 AC 177 ms
6,940 KB
testcase_46 AC 23 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

void fast_io() {
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
}

int main() {
    fast_io();
    int n, k;
    cin >> n >> k;
    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    vector<int> cmb(n);
    for (int i = 0; i < k; i++) {
        cmb[i] = 1;
    }
    sort(cmb.begin(), cmb.end());
    int ans = 0;
    do {
        int sum_998244 = 0, sum_998 = 0;
        for (int i = 0; i < n; i++) {
            if (cmb[i] == 1) {
                sum_998244 = (sum_998244 + a[i]) % 998244353;
                sum_998 = (sum_998 + a[i]) % 998;
            }
        }
        if (sum_998244 <= sum_998) {
            ans++;
            ans %= 998;
        }
    } while (next_permutation(cmb.begin(), cmb.end()));
    cout << ans << endl;
}
0