結果
問題 | No.2867 NOT FOUND 404 Again |
ユーザー | vjudge1 |
提出日時 | 2024-09-12 11:12:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,206 bytes |
コンパイル時間 | 2,370 ms |
コンパイル使用メモリ | 169,200 KB |
実行使用メモリ | 796,604 KB |
最終ジャッジ日時 | 2024-09-12 11:13:23 |
合計ジャッジ時間 | 8,690 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
13,884 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | MLE | - |
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 | MLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const int N = 1e6 + 5, mod = 998244353; int n, dp[N][10][10][2], x[N]; string s; int main() { cin >> s; n = s.size(); s = " " + s; for (int i = 1; i <= n; i++) { x[i] = (int)(s[i] - '0'); } dp[0][9][9][1] = 1; for (int i = 1; i <= n; i++) { for (int a = 0; a <= 9; a++) { for (int b = 0; b <= 9; b++) { for (int c = 0; c <= 9; c++) { if (c == 4 && b == 0 && a == 4) { continue; } if (c < x[i]) { dp[i][c][b][0] = (dp[i][c][b][0] + dp[i - 1][b][a][1]) % mod; dp[i][c][b][0] = (dp[i][c][b][0] + dp[i - 1][b][a][0]) % mod; } else if (c == x[i]) { dp[i][c][b][1] = (dp[i][c][b][1] + dp[i - 1][b][a][1]) % mod; dp[i][c][b][0] = (dp[i][c][b][0] + dp[i - 1][b][a][0]) % mod; } else { dp[i][c][b][0] = (dp[i][c][b][0] + dp[i - 1][b][a][0]) % mod; } } } } } int ans = 0; for (int a = 0; a <= 9; a++) { for (int b = 0; b <= 9; b++) { ans += (dp[n][a][b][0] + dp[n][a][b][1]) % mod; ans %= mod; } } cout << ans - 1; return 0; }