結果

問題 No.2867 NOT FOUND 404 Again
ユーザー 寝癖寝癖
提出日時 2024-07-08 12:56:49
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,008 bytes
コンパイル時間 2,760 ms
コンパイル使用メモリ 246,588 KB
実行使用メモリ 8,340 KB
最終ジャッジ日時 2024-08-01 13:30:07
合計ジャッジ時間 64,070 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

using mint = modint998244353;

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

    int D = N.size();
    const int M = 100;

    int n[D];
    for (int i = 0; i < D; i++) n[i] = N[i]-'0';

    mint now[2][M];
    memset(now, 0, sizeof(now));
    now[0][0] = 1;

    for (int i = 0; i < D; i++) {
        mint nxt[2][M];
        memset(nxt, 0, sizeof(nxt));
        for (int smaller = 0; smaller < 2; smaller++) {
            for (int j = 0; j < M; j++) {
                if (now[smaller][j].val() == 0) continue;
                for (int x = 0; x <= (smaller ? 9 : n[i]); x++) {
                    if (j*10+x == 404) continue;
                    nxt[smaller || x < n[i]][(j*10+x)%M] += now[smaller][j];
                }
            }
        }
        memcpy(now, nxt, sizeof(now));
    }

    mint ans = -1;
    for (auto x : now[0]) ans += x;
    for (auto x : now[1]) ans += x;
    cout << ans.val() << endl;
}
0