結果
問題 | No.2867 NOT FOUND 404 Again |
ユーザー | yuusaan |
提出日時 | 2024-07-02 11:11:38 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,000 bytes |
コンパイル時間 | 818 ms |
コンパイル使用メモリ | 94,212 KB |
実行使用メモリ | 814,360 KB |
最終ジャッジ日時 | 2024-08-01 13:28:33 |
合計ジャッジ時間 | 2,899 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
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 <iostream> #include <vector> #include <string> using namespace std; const int MOD = 998244353; int main() { string N; cin >> N; int L = N.length(); vector<vector<vector<long long>>> dp(L + 1, vector<vector<long long>>(10, vector<long long>(10, 0))); // 初期条件 for (int i = 0; i <= 9; ++i) { for (int j = 0; j <= 9; ++j) { dp[0][i][j] = 1; } } for (int i = 0; i < L; ++i) { for (int j = 0; j <= 9; ++j) { for (int k = 0; k <= 9; ++k) { for (int d = 0; d <= 9; ++d) { if (!(j == 4 && k == 0 && d == 4)) { dp[i + 1][k][d] = (dp[i + 1][k][d] + dp[i][j][k]) % MOD; } } } } } long long result = 0; for (int j = 0; j <= 9; ++j) { for (int k = 0; k <= 9; ++k) { result = (result + dp[L][j][k]) % MOD; } } cout << result << endl; return 0; }