結果

問題 No.2561 みんな大好きmod 998
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-18 05:10:18
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 559 ms / 4,000 ms
コード長 806 bytes
コンパイル時間 5,304 ms
コンパイル使用メモリ 311,148 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-18 05:10:31
合計ジャッジ時間 13,453 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 23 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 559 ms
5,376 KB
testcase_04 AC 526 ms
5,376 KB
testcase_05 AC 533 ms
5,376 KB
testcase_06 AC 525 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 78 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 551 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 380 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 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 107 ms
5,376 KB
testcase_27 AC 551 ms
5,376 KB
testcase_28 AC 141 ms
5,376 KB
testcase_29 AC 41 ms
5,376 KB
testcase_30 AC 126 ms
5,376 KB
testcase_31 AC 267 ms
5,376 KB
testcase_32 AC 57 ms
5,376 KB
testcase_33 AC 40 ms
5,376 KB
testcase_34 AC 554 ms
5,376 KB
testcase_35 AC 36 ms
5,376 KB
testcase_36 AC 35 ms
5,376 KB
testcase_37 AC 17 ms
5,376 KB
testcase_38 AC 78 ms
5,376 KB
testcase_39 AC 127 ms
5,376 KB
testcase_40 AC 126 ms
5,376 KB
testcase_41 AC 78 ms
5,376 KB
testcase_42 AC 140 ms
5,376 KB
testcase_43 AC 17 ms
5,376 KB
testcase_44 AC 56 ms
5,376 KB
testcase_45 AC 404 ms
5,376 KB
testcase_46 AC 46 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;

using lint = long long;

using mint1 = atcoder::modint998244353;
using mint2 = atcoder::modint;

int main() {
    int n, k;
    cin >> n >> k;
    vector<lint> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    mint2::set_mod(998);
    vector<char> v(n, 'x');
    for (int i = 0; i < k; i++) {
        v[i] = 'o';
    }
    mint2 ans = 0;
    do {
        mint1 cnt1 = 0;
        mint2 cnt2 = 0;
        for (int i = 0; i < n; i++) {
            if (v[i] == 'o') {
                cnt1 += mint1(a[i]);
                cnt2 += mint2(a[i]);
            }
        }
        if (cnt1.val() <= cnt2.val()) {
            ans++;
        }
    } while (next_permutation(v.begin(), v.end()));
    cout << ans.val() << endl;
}
0