結果

問題 No.2867 NOT FOUND 404 Again
ユーザー detteiuudetteiuu
提出日時 2024-08-30 23:02:59
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,692 bytes
コンパイル時間 5,494 ms
コンパイル使用メモリ 317,040 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-08-30 23:03:10
合計ジャッジ時間 10,373 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
12,368 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 TLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
#define pass (void)0
using namespace std;
using namespace atcoder;
using mint = modint998244353;
using ll = long long;

int main() {
    string S;
    cin >> S;
    int L = S.length();

    vector dp(2, vector(2, vector(2, vector<mint>(100, 0))));
    dp[0][0][0][0] = 1;
    
    for (int i = 0; i < L; i++) {
        for (int zero = 0; zero < 2; zero++) {
            for (int small = 0; small < 2; small++) {
                for (int j = 0; j < 100; j++) {
                    if (zero == 0) {
                        dp[1][zero][1][j] += dp[0][zero][small][j];
                        for (int k = 1; k <= (small ? 9 : S[i] - '0'); k++) {
                            dp[1][1][small || (k < S[i] - '0')][k] += dp[0][zero][small][j];
                        }
                        continue;
                    }
                    for (int k = 0; k <= (small ? 9 : S[i] - '0'); k++) {
                        if (j == 40 && k == 4) continue;
                        dp[1][1][small || (k < S[i] - '0')][(j * 10 % 100 + k) % 100] += dp[0][zero][small][j];
                    }
                }
            }
        }

        // dp[1] の値を dp[0] に移し替え、dp[1]をリセット
        for (int i = 0; i < 2; i++) {
            for (int j = 0; j < 2; j++) {
                for (int k = 0; k < 100; k++) {
                    dp[0][i][j][k] = dp[1][i][j][k];
                    dp[1][i][j][k] = 0;
                }
            }
        }
    }

    mint ans = 0;
    for (int i = 0; i < 2; i++) {
        for (int j = 0; j < 100; j++) {
            ans += dp[0][1][i][j];
        }
    }

    cout << ans.val() << endl;
}
0