結果

問題 No.2867 NOT FOUND 404 Again
ユーザー kotatsugamekotatsugame
提出日時 2024-08-30 21:40:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 139 ms / 3,000 ms
コード長 938 bytes
コンパイル時間 602 ms
コンパイル使用メモリ 70,068 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-30 21:40:45
合計ジャッジ時間 3,555 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 112 ms
6,940 KB
testcase_04 AC 112 ms
6,940 KB
testcase_05 AC 114 ms
6,944 KB
testcase_06 AC 112 ms
6,940 KB
testcase_07 AC 139 ms
6,940 KB
testcase_08 AC 115 ms
6,940 KB
testcase_09 AC 114 ms
6,944 KB
testcase_10 AC 112 ms
6,940 KB
testcase_11 AC 115 ms
6,940 KB
testcase_12 AC 118 ms
6,940 KB
testcase_13 AC 117 ms
6,940 KB
testcase_14 AC 113 ms
6,940 KB
testcase_15 AC 115 ms
6,940 KB
testcase_16 AC 111 ms
6,940 KB
testcase_17 AC 118 ms
6,940 KB
testcase_18 AC 93 ms
6,940 KB
testcase_19 AC 124 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cassert>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
mint dp[2][2][3];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	string N;cin>>N;
	int now=0;
	dp[now][0][0]=1;
	for(char c:N)
	{
		int nxt=1-now;
		for(int i=0;i<2;i++)for(int j=0;j<3;j++)
		{
			dp[nxt][i][j]=0;
		}
		for(int i=0;i<2;i++)
		{
			int U=i?9:c-'0';
			for(int k=0;k<=U;k++)
			{
				int ni=i||k<U;
				if(k==4)
				{
					dp[nxt][ni][1]+=dp[now][i][0];
					dp[nxt][ni][1]+=dp[now][i][1];
				}
				else if(k==0)
				{
					dp[nxt][ni][0]+=dp[now][i][0];
					dp[nxt][ni][2]+=dp[now][i][1];
					dp[nxt][ni][0]+=dp[now][i][2];
				}
				else
				{
					dp[nxt][ni][0]+=dp[now][i][0];
					dp[nxt][ni][0]+=dp[now][i][1];
					dp[nxt][ni][0]+=dp[now][i][2];
				}
			}
		}
		now=nxt;
	}
	mint ans=-1;
	for(int i=0;i<2;i++)for(int j=0;j<3;j++)ans+=dp[now][i][j];
	cout<<ans.val()<<endl;
}
0