結果
問題 | No.2867 NOT FOUND 404 Again |
ユーザー | vjudge1 |
提出日時 | 2024-09-12 11:10:21 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,171 bytes |
コンパイル時間 | 1,728 ms |
コンパイル使用メモリ | 168,860 KB |
実行使用メモリ | 814,156 KB |
最終ジャッジ日時 | 2024-09-12 11:10:28 |
合計ジャッジ時間 | 5,745 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | MLE | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long const int N = 1e6 + 5, mod = 998244353; int n, dp[N][10][10][2], x[N]; string s; signed 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] + 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]; ans %= mod; } } cout << ans - 1; return 0; }