結果

問題 No.2772 Appearing Even Times
ユーザー ypwwypww
提出日時 2024-05-31 23:19:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 2,371 bytes
コンパイル時間 4,754 ms
コンパイル使用メモリ 272,408 KB
実行使用メモリ 814,592 KB
最終ジャッジ日時 2024-05-31 23:19:49
合計ジャッジ時間 6,765 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 4 ms
6,944 KB
testcase_02 AC 7 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 MLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>

using namespace std;
using namespace atcoder;
using ll = int;

#define rep(i, a, b) for(ll i=a; i<b; i++)
#define rrep(i, a, b) for(ll i=a; i>=b; i--)

using mint = modint998244353;

int main()
{
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    // cout << fixed << setprecision(18);

    string s;
    cin>>s;
    ll n = s.size();
    vector<vector<vector<vector<mint>>>> dp(n+1, vector<vector<vector<mint>>>(1<<10, vector<vector<mint>>(2, vector<mint>(2))));
    dp[n][0][1][1] = 1;
    rrep(i,n,1){
        ll now = s[n-i]-'0';
        rep(j,0,1<<10){
            rep(mode,0,2){
                rep(l,0,2){
                    if (mode){
                        rep(k,0,10){
                            if (l){
                                if (k<now){
                                    if (k==0){
                                        dp[i-1][j][0][1] += dp[i][j][mode][l];
                                    }else{
                                        dp[i-1][j^(1<<k)][0][0] += dp[i][j][mode][l];
                                    }
                                }else if(k==now){
                                    dp[i-1][j^(1<<k)][1][0] += dp[i][j][mode][l];
                                }
                            }else{
                                if (k<now){
                                    dp[i-1][j^(1<<k)][0][0] += dp[i][j][mode][l];
                                }else if(k==now){
                                    dp[i-1][j^(1<<k)][1][0] += dp[i][j][mode][l];
                                }
                            }
                        }
                    }else{
                        rep(k,0,10){
                            if (l){
                                if (k==0){
                                    dp[i-1][j][0][1] += dp[i][j][mode][l];
                                }else{
                                    dp[i-1][j^(1<<k)][0][0] += dp[i][j][mode][l];
                                }
                            }else{
                                dp[i-1][j^(1<<k)][0][0] += dp[i][j][mode][l];
                            }
                        }
                    }
                }

            }
        }
    }
    mint ans = dp[0][0][0][0] + dp[0][0][1][0];
    cout << ans.val() << endl;

    return 0;
}
0