結果

問題 No.2936 Sum of Square of Mex
ユーザー nouka28nouka28
提出日時 2024-10-07 10:57:48
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 547 bytes
コンパイル時間 3,298 ms
コンパイル使用メモリ 251,916 KB
実行使用メモリ 817,024 KB
最終ジャッジ日時 2024-10-07 10:57:54
合計ジャッジ時間 5,481 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 MLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int mod=998244353;

int main(){
    int n,m;cin>>n>>m;
    int ans=0;
    auto dfs=[&](auto dfs,vector<int> v)->void {
        if(v.size()==n){
            set<int> st(v.begin(),v.end());
            int cnt=0;while(st.count(cnt))cnt++;
            ans=(ans+cnt*cnt)%mod;
        }else{
            for(int i=0;i<=m;i++){
                v.push_back(i);
                dfs(dfs,v);
                v.pop_back();
            }
        }
    };

    dfs(dfs,vector<int>());

    cout<<ans<<endl;
}
0