結果

問題 No.2936 Sum of Square of Mex
ユーザー askr58askr58
提出日時 2024-10-12 17:50:13
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 725 ms / 2,000 ms
コード長 810 bytes
コンパイル時間 5,912 ms
コンパイル使用メモリ 321,256 KB
実行使用メモリ 70,340 KB
最終ジャッジ日時 2024-10-12 17:50:30
合計ジャッジ時間 17,016 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 87 ms
13,696 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 565 ms
57,924 KB
testcase_09 AC 239 ms
27,336 KB
testcase_10 AC 329 ms
37,820 KB
testcase_11 AC 265 ms
30,520 KB
testcase_12 AC 347 ms
40,372 KB
testcase_13 AC 135 ms
18,240 KB
testcase_14 AC 14 ms
5,248 KB
testcase_15 AC 509 ms
51,900 KB
testcase_16 AC 675 ms
70,208 KB
testcase_17 AC 690 ms
70,216 KB
testcase_18 AC 671 ms
70,336 KB
testcase_19 AC 725 ms
70,212 KB
testcase_20 AC 669 ms
70,300 KB
testcase_21 AC 695 ms
70,136 KB
testcase_22 AC 672 ms
70,212 KB
testcase_23 AC 673 ms
70,204 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 669 ms
70,340 KB
testcase_27 AC 673 ms
70,212 KB
testcase_28 AC 696 ms
70,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using mint=modint998244353;
vector<mint> convolute(vector<vector<mint>> v){
    int n=v.size();
    if(n==1)return v[0];
    vector<vector<mint>> a,b;
    for(int i=0;i<n/2;i++)a.push_back(v[i]);
    for(int i=n/2;i<n;i++)b.push_back(v[i]);
    return convolution(convolute(a),convolute(b));
}
int main()
{
    ll n,m;
    cin>>n>>m;
    vector<vector<mint>> v(min(n,m+1)+1,vector<mint>({-1,1}));
    ll k=min(n,m+1);
    vector<mint> a=convolute(v);

    mint ans=((mint)m+1).pow(n)*min(n,m+1)*min(n,m+1);
    for(int i=1;i<=min(n-1,m);i++)ans+=((mint)(m+1-i)).pow(n)*(-2*a[k-i-1]-(2*k-1)*a[k-i]);

    if(m>=n)ans+=((mint)(m+1-n)).pow(n)*(-(2*k-1)*a[0]);
    
    cout<<ans.val()<<endl;

    
}
0