結果

問題 No.2302 Carry X Times
ユーザー kotatsugamekotatsugame
提出日時 2023-05-12 21:44:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 1,282 bytes
コンパイル時間 789 ms
コンパイル使用メモリ 69,120 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 11:32:12
合計ジャッジ時間 4,157 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
5,248 KB
testcase_01 AC 130 ms
5,376 KB
testcase_02 AC 144 ms
5,376 KB
testcase_03 AC 10 ms
5,376 KB
testcase_04 AC 9 ms
5,376 KB
testcase_05 AC 16 ms
5,376 KB
testcase_06 AC 17 ms
5,376 KB
testcase_07 AC 16 ms
5,376 KB
testcase_08 AC 15 ms
5,376 KB
testcase_09 AC 18 ms
5,376 KB
testcase_10 AC 136 ms
5,376 KB
testcase_11 AC 133 ms
5,376 KB
testcase_12 AC 135 ms
5,376 KB
testcase_13 AC 132 ms
5,376 KB
testcase_14 AC 131 ms
5,376 KB
testcase_15 AC 131 ms
5,376 KB
testcase_16 AC 132 ms
5,376 KB
testcase_17 AC 135 ms
5,376 KB
testcase_18 AC 134 ms
5,376 KB
testcase_19 AC 132 ms
5,376 KB
testcase_20 AC 133 ms
5,376 KB
testcase_21 AC 134 ms
5,376 KB
testcase_22 AC 132 ms
5,376 KB
testcase_23 AC 136 ms
5,376 KB
testcase_24 AC 136 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
string N;
int X;
mint dp[2][2][2][2][200];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int T;cin>>T;
	for(;T--;)
	{
		cin>>N>>X;
		int now=0;
		for(int j=0;j<2;j++)for(int k=0;k<2;k++)for(int l=0;l<2;l++)for(int m=0;m<200;m++)
		{
			dp[now][j][k][l][m]=mint::raw(0);
		}
		dp[now][0][0][0][0]=mint::raw(1);
		for(int i=N.size();i--;)
		{
			int nxt=1-now;
			for(int j=0;j<2;j++)for(int k=0;k<2;k++)for(int l=0;l<2;l++)for(int m=0;m<200;m++)
			{
				dp[nxt][j][k][l][m]=mint::raw(0);
			}
			int n=N[i]-'0';
			for(int j=0;j<2;j++)for(int k=0;k<2;k++)for(int l=0;l<2;l++)for(int m=0;m<200;m++)
			{
				for(int a=0;a<10;a++)for(int b=0;b<10;b++)
				{
					int nj,nk,nl,nm;
					{//nj
						if(a>n)nj=1;
						else if(a==n)nj=j;
						else nj=0;
					}
					{//nk
						if(b>n)nk=1;
						else if(b==n)nk=k;
						else nk=0;
					}
					{//nl
						if(a+b+l>=10)nl=1;
						else nl=0;
					}
					{//nm
						nm=m+a+b-(a+b+l)%10;
					}
					if(nm<200)dp[nxt][nj][nk][nl][nm]+=dp[now][j][k][l][m];
				}
			}
			now=nxt;
		}
		mint ans=0;
		{//l=0
			ans+=dp[now][0][0][0][9*X];
		}
		{//l=1
			ans+=dp[now][0][0][1][9*X+1];
		}
		cout<<ans.val()<<endl;
	}
}
0