結果

問題 No.2867 NOT FOUND 404 Again
ユーザー t98slidert98slider
提出日時 2024-09-01 08:28:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 114 ms / 3,000 ms
コード長 880 bytes
コンパイル時間 4,464 ms
コンパイル使用メモリ 263,224 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-01 08:28:33
合計ジャッジ時間 7,436 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 94 ms
6,940 KB
testcase_04 AC 95 ms
6,944 KB
testcase_05 AC 94 ms
6,940 KB
testcase_06 AC 96 ms
6,940 KB
testcase_07 AC 95 ms
6,948 KB
testcase_08 AC 93 ms
6,944 KB
testcase_09 AC 94 ms
6,940 KB
testcase_10 AC 94 ms
6,944 KB
testcase_11 AC 94 ms
6,944 KB
testcase_12 AC 95 ms
6,944 KB
testcase_13 AC 94 ms
6,940 KB
testcase_14 AC 95 ms
6,940 KB
testcase_15 AC 93 ms
6,944 KB
testcase_16 AC 91 ms
6,944 KB
testcase_17 AC 93 ms
6,940 KB
testcase_18 AC 95 ms
6,940 KB
testcase_19 AC 114 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
using mint = atcoder::modint998244353;

int main(){
	ios::sync_with_stdio(false);
	cin.tie(0);
	string s;
	cin >> s;
	const int n = s.size();
	array<int, 3> tmp = {4, 0, 4};
	array<mint, 8> dp{};
	dp[1] = 1;
	for(int i = 0; i < n; i++){
		array<mint, 8> ndp{};
		for(int S = 0; S < 8; S++){
			if(dp[S] == 0) continue;
			const int r = S & 1 ? s[i] - '0' : 9;
			if((S & 6) == 6){
				if(S & 1){
					ndp[7] += dp[S];
					if(r >= 1) ndp[6] += r * dp[S];
				}else{
					ndp[6] += 10 * dp[S];
				}
			}else{
				const int fl = S & 1, st = S >> 1;
				for(int nv = 0; nv <= r; nv++){
					int ns = tmp[st] == nv ? st + 1 : (nv == 4);
					ndp[ns * 2 + ((nv == r) & fl)] += dp[S];
				}
			}
		}
		swap(dp, ndp);
	}
	cout << accumulate(dp.begin(), dp.begin() + 6, mint(-1)).val() << '\n';
}
0