結果

問題 No.2876 Infection
ユーザー 寝癖寝癖
提出日時 2024-07-06 00:14:46
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 859 bytes
コンパイル時間 2,559 ms
コンパイル使用メモリ 247,588 KB
実行使用メモリ 105,984 KB
最終ジャッジ日時 2024-07-06 01:08:39
合計ジャッジ時間 5,890 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
101,376 KB
testcase_01 AC 27 ms
101,504 KB
testcase_02 AC 26 ms
101,504 KB
testcase_03 AC 27 ms
101,376 KB
testcase_04 AC 27 ms
101,376 KB
testcase_05 AC 207 ms
105,856 KB
testcase_06 AC 251 ms
105,984 KB
testcase_07 AC 196 ms
105,948 KB
testcase_08 AC 198 ms
105,984 KB
testcase_09 AC 194 ms
105,856 KB
testcase_10 AC 53 ms
102,912 KB
testcase_11 AC 51 ms
102,784 KB
testcase_12 AC 42 ms
102,528 KB
testcase_13 AC 66 ms
103,424 KB
testcase_14 AC 167 ms
105,472 KB
testcase_15 AC 111 ms
104,576 KB
testcase_16 AC 30 ms
102,016 KB
testcase_17 AC 25 ms
101,632 KB
testcase_18 AC 59 ms
103,168 KB
testcase_19 AC 26 ms
101,632 KB
testcase_20 AC 85 ms
104,064 KB
testcase_21 AC 26 ms
101,760 KB
testcase_22 AC 95 ms
104,192 KB
testcase_23 AC 68 ms
103,424 KB
testcase_24 AC 52 ms
103,040 KB
testcase_25 AC 90 ms
104,064 KB
testcase_26 AC 27 ms
101,760 KB
testcase_27 AC 55 ms
103,168 KB
testcase_28 AC 28 ms
101,888 KB
testcase_29 AC 146 ms
105,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using mint = modint998244353;

mint c[5005], s[5005][5005], p, fact[5005];
bool c_used[5005], s_used[5005][5005];

mint C(int n);
mint S(int n, int k);

mint C(int n) {
    if (c_used[n]) return c[n];
    c_used[n] = true;
    mint res = 1;
    for (int i = 1; i <= n-1; i++) res -= S(n, i);
    return c[n] = res;
}

mint S(int n, int k) {
    if (s_used[n][k]) return s[n][k];
    s_used[n][k] = true;
    mint res = fact[n-1] / fact[k-1] / fact[n-k] * C(k) * (1-p).pow(k*(n-k));
    return s[n][k] = res;
}

int main() {
    int N, x;
    cin >> N >> x;

    p = (mint)x / 100;
    fact[0] = 1;
    for (int i = 1; i <= N; i++) fact[i] = fact[i-1] * i;

    mint ans = 0;
    for (int k = 1; k <= N; k++) ans += k * S(N, k);
    cout << ans.val() << endl;
}
0