結果

問題 No.2936 Sum of Square of Mex
ユーザー pockynypockyny
提出日時 2024-10-12 17:22:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,190 bytes
コンパイル時間 2,430 ms
コンパイル使用メモリ 116,304 KB
実行使用メモリ 21,564 KB
最終ジャッジ日時 2024-10-12 17:22:22
合計ジャッジ時間 5,314 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
15,104 KB
testcase_01 AC 38 ms
15,104 KB
testcase_02 AC 47 ms
16,000 KB
testcase_03 WA -
testcase_04 AC 39 ms
15,104 KB
testcase_05 AC 42 ms
15,232 KB
testcase_06 AC 41 ms
15,232 KB
testcase_07 WA -
testcase_08 AC 94 ms
20,844 KB
testcase_09 WA -
testcase_10 AC 66 ms
18,380 KB
testcase_11 WA -
testcase_12 AC 68 ms
18,256 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 85 ms
20,776 KB
testcase_16 AC 91 ms
21,440 KB
testcase_17 AC 94 ms
21,444 KB
testcase_18 AC 91 ms
21,436 KB
testcase_19 AC 88 ms
21,396 KB
testcase_20 AC 89 ms
21,444 KB
testcase_21 AC 93 ms
21,436 KB
testcase_22 AC 93 ms
21,436 KB
testcase_23 AC 93 ms
21,440 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 96 ms
21,440 KB
testcase_27 AC 91 ms
21,440 KB
testcase_28 AC 91 ms
21,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <atcoder/modint>

using namespace std;
using namespace atcoder;
using ll = long long;
using mint = modint998244353;
const int MX = 1000010;
mint f[MX],inv[MX],fi[MX];
constexpr ll mod = 998244353;
void solve(){
    inv[1] = 1;
    for(int i=2;i<MX;i++){
        inv[i] = mod - (mod/i)*inv[mod%i];
    }
    f[0] = fi[0] = 1;
    for(int i=1;i<MX;i++){
        f[i] = f[i-1]*i;
        fi[i] = fi[i-1]*inv[i];
    }
}

mint nck(ll n, ll k){
    if(n<0 || k<0 || n<k) return 0;
    return f[n]*fi[k]*fi[n-k];
}

mint pw(mint a,ll x){
    mint ret = 1;
    while(x){
        if(x&1) (ret *= a);
        (a *= a); x /= 2;
    }
    return ret;
}

#include <atcoder/convolution>

using namespace std;
int main(){
    solve();
    int i,n,m; cin >> n >> m;
    vector<mint> F(n + 1),G(n + 1);
    for(i=0;i<=n;i++){
        mint val = pw(m + 1 - i,n)*fi[i];
        F[i] = i&1 ? -val : val;
    }
    for(i=0;i<=n;i++) G[i] = fi[i];
    vector<mint> H = convolution(F,G);
    mint ans = 0;
    for(i=1;i<=n;i++){
        ans += (2*i - 1)*f[i]*H[i];
    }
    cout << ans.val() << "\n";
    // for(i=1;i<=n;i++) cout << (H[i]*f[i]).val() << " ";
    // cout << "\n";
}
0