結果

問題 No.2867 NOT FOUND 404 Again
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-08-30 23:25:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 472 ms / 3,000 ms
コード長 913 bytes
コンパイル時間 2,186 ms
コンパイル使用メモリ 212,028 KB
実行使用メモリ 152,748 KB
最終ジャッジ日時 2024-08-30 23:25:29
合計ジャッジ時間 10,295 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 425 ms
152,512 KB
testcase_04 AC 436 ms
152,676 KB
testcase_05 AC 434 ms
152,600 KB
testcase_06 AC 413 ms
152,612 KB
testcase_07 AC 433 ms
152,636 KB
testcase_08 AC 431 ms
152,596 KB
testcase_09 AC 424 ms
152,712 KB
testcase_10 AC 421 ms
152,640 KB
testcase_11 AC 405 ms
152,748 KB
testcase_12 AC 407 ms
152,716 KB
testcase_13 AC 434 ms
152,612 KB
testcase_14 AC 414 ms
152,548 KB
testcase_15 AC 413 ms
152,644 KB
testcase_16 AC 437 ms
152,524 KB
testcase_17 AC 412 ms
152,704 KB
testcase_18 AC 373 ms
152,676 KB
testcase_19 AC 472 ms
152,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

#include <atcoder/modint>
using mint = atcoder::modint998244353;
int main() {
	fast_io();
	string n;
	cin >> n;
	int m = n.size();
	string s = "404";
	vector dp(m + 1, vector(2, vector<mint>(3, 0)));
	dp[0][0][0] = 1;
	for (int i = 0; i < m; i++) {
		for (int smaller = 0; smaller < 2; smaller++) {
			for (int j = 0; j < 3; j++) {
				for (int x = 0; x <= (smaller ? 9 : (n[i] - '0')); x++) {
					int nj;
					if (x == (s[j] - '0')) {
						nj = j + 1;
					} else if (x == 4) {
						nj = 1;
					} else {
						nj = 0;
					}
					if (nj == 3) {
						continue;
					}
					dp[i + 1][smaller || (x < (n[i] - '0'))][nj] +=
						dp[i][smaller][j];
				}
			}
		}
	}
	mint ans = 0;
	for (int j = 0; j < 3; j++) {
		ans += dp[m][0][j] + dp[m][1][j];
	}
	ans--;
	cout << ans.val() << endl;
}
0