結果

問題 No.2936 Sum of Square of Mex
ユーザー askr58askr58
提出日時 2024-10-12 17:33:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 781 bytes
コンパイル時間 6,022 ms
コンパイル使用メモリ 321,956 KB
実行使用メモリ 70,816 KB
最終ジャッジ日時 2024-10-12 17:33:32
合計ジャッジ時間 19,327 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 83 ms
13,824 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 WA -
testcase_08 AC 557 ms
58,784 KB
testcase_09 WA -
testcase_10 AC 305 ms
37,824 KB
testcase_11 WA -
testcase_12 AC 332 ms
40,372 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 490 ms
52,508 KB
testcase_16 AC 671 ms
70,304 KB
testcase_17 AC 666 ms
70,308 KB
testcase_18 AC 666 ms
70,516 KB
testcase_19 AC 645 ms
70,256 KB
testcase_20 AC 651 ms
70,300 KB
testcase_21 AC 672 ms
70,788 KB
testcase_22 AC 643 ms
70,304 KB
testcase_23 AC 673 ms
70,300 KB
testcase_24 AC 617 ms
70,292 KB
testcase_25 WA -
testcase_26 AC 645 ms
70,268 KB
testcase_27 AC 675 ms
70,656 KB
testcase_28 AC 639 ms
70,708 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(n+1,vector<mint>({-1,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[n-i-1]-(2*n-1)*a[n-i]);

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

    
}
0