結果

問題 No.2867 NOT FOUND 404 Again
ユーザー rlangevinrlangevin
提出日時 2024-11-17 12:32:34
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,767 bytes
コンパイル時間 4,077 ms
コンパイル使用メモリ 123,264 KB
実行使用メモリ 8,212 KB
最終ジャッジ日時 2024-11-17 12:33:23
合計ジャッジ時間 46,333 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2,620 ms
8,204 KB
testcase_04 AC 2,599 ms
8,204 KB
testcase_05 AC 2,460 ms
8,208 KB
testcase_06 AC 2,471 ms
8,080 KB
testcase_07 AC 2,459 ms
8,204 KB
testcase_08 AC 2,449 ms
8,208 KB
testcase_09 AC 2,480 ms
8,184 KB
testcase_10 AC 2,529 ms
8,208 KB
testcase_11 AC 2,540 ms
8,204 KB
testcase_12 AC 2,499 ms
8,208 KB
testcase_13 AC 2,516 ms
8,212 KB
testcase_14 AC 2,483 ms
8,212 KB
testcase_15 AC 2,474 ms
8,212 KB
testcase_16 AC 2,479 ms
8,208 KB
testcase_17 AC 2,494 ms
8,212 KB
testcase_18 AC 1,591 ms
8,208 KB
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>

using namespace std;

const int MOD = 998244353;

int main() {
    string input;
    cin >> input;

    vector<int> N(input.size());
    for (size_t i = 0; i < input.size(); ++i) {
        N[i] = input[i] - '0';
    }

    vector<int> pre0(100, 0), pre1(100, 0);

    if (N.size() <= 2) {
        string ans = "";
        for (int n : N) {
            ans += to_string(n);
        }
        cout << ans << endl;
        return 0;
    }

    int st = N[0] * 10 + N[1];
    for (int i = 0; i < st; ++i) {
        pre0[i] = 1;
    }
    pre1[st] = 1;

    for (size_t k = 2; k < N.size(); ++k) {
        int n = N[k];
        vector<int> dp0(100, 0), dp1(100, 0);

        for (int a = 0; a < 10; ++a) {
            for (int b = 0; b < 10; ++b) {
                if (pre0[a*10+b] == 0 && pre1[a*10+b] == 0) continue;
                for (int c = 0; c < 10; ++c) {
                    if (a == 4 && b == 0 && c == 4) continue;
                    dp0[b * 10 + c] = (dp0[b * 10 + c] + pre0[a * 10 + b]) % MOD;
                }
                if (a != 4 || b != 0 || n != 4) {
                    dp1[b * 10 + n] = (dp1[b * 10 + n] + pre1[a * 10 + b]) % MOD;
                }
                for (int c = 0; c < n; ++c) {
                    if (a == 4 && b == 0 && c == 4) continue;
                    dp0[b * 10 + c] = (dp0[b * 10 + c] + pre1[a * 10 + b]) % MOD;
                }
            }
        }
        pre0.swap(dp0);
        pre1.swap(dp1);
    }

    int ans = -1;
    for (int i = 0; i < 10; ++i) {
        for (int j = 0; j < 10; ++j) {
            ans = (ans + pre0[i * 10 + j]) % MOD;
            ans = (ans + pre1[i * 10 + j]) % MOD;
        }
    }

    cout << ans << endl;
    return 0;
}
0