結果
問題 | No.2867 NOT FOUND 404 Again |
ユーザー | Today03 |
提出日時 | 2024-08-30 22:53:11 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,395 bytes |
コンパイル時間 | 3,062 ms |
コンパイル使用メモリ | 250,628 KB |
実行使用メモリ | 66,992 KB |
最終ジャッジ日時 | 2024-08-30 22:53:19 |
合計ジャッジ時間 | 7,076 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 93 ms
66,812 KB |
testcase_19 | AC | 226 ms
66,800 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; const int INF = 1e9 + 10; const ll INFL = 4e18; #include <atcoder/modint> using mint = atcoder::modint998244353; int main() { string S; cin >> S; int N = S.size(); // N以下の数であって、部分文字列として404を含まないものの個数 // dp[i][j][k][l][m]:=i桁目までみていて、j:N未満が確定しているか、 // k:2つ前の桁が4か、l:1つ前の桁が4か、m:1つ前の桁が0か mint dp[N + 1][2][2][2][2] = {}; dp[0][0][0][0][0] = 1; for (int i = 0; i < N; i++) { int s = S[i] - '0'; // N未満が確定 for (int k = 0; k < 2; k++) { for (int l = 0; l < 2; l++) { for (int m = 0; m < 2; m++) { // 次の桁が0 dp[i + 1][1][l][0][1] += dp[i][1][k][l][m]; // 次の桁が4 if (!(k && m)) dp[i + 1][1][l][1][0] += dp[i][1][k][l][m]; // それ以外 dp[i + 1][1][l][0][0] += dp[i][1][k][l][m] * 8; } } } // N未満が確定していない for (int k = 0; k < 2; k++) { for (int l = 0; l < 2; l++) { for (int m = 0; m < 2; m++) { for (int d = 0; d < s; d++) { if (d == 0) { if (i == 0) continue; dp[i + 1][1][l][0][1] += dp[i][0][k][l][m]; } else if (d == 4) { if (!(k && m)) dp[i + 1][1][l][1][0] += dp[i][0][k][l][m]; } else { dp[i + 1][1][l][0][0] += dp[i][0][k][l][m]; } } dp[i + 1][0][l][s == 4][s == 0] += dp[i][0][k][l][m]; } } } // 次の桁から始める if (i > 0) { dp[i + 1][1][0][1][0] += 1; dp[i + 1][1][0][0][0] += 8; } } mint ans = 0; for (int j = 0; j < 2; j++) { for (int k = 0; k < 2; k++) { for (int l = 0; l < 2; l++) { for (int m = 0; m < 2; m++) { ans += dp[N][j][k][l][m]; } } } } cout << ans.val() << endl; }