結果

問題 No.1085 桁和の桁和
ユーザー kotatsugamekotatsugame
提出日時 2020-06-19 21:55:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 777 ms
コンパイル使用メモリ 66,460 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-11-06 17:33:40
合計ジャッジ時間 3,060 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 73 ms
17,152 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 8 ms
5,248 KB
testcase_14 AC 20 ms
8,704 KB
testcase_15 AC 44 ms
15,616 KB
testcase_16 AC 42 ms
15,488 KB
testcase_17 AC 21 ms
9,088 KB
testcase_18 AC 12 ms
6,528 KB
testcase_19 AC 40 ms
14,336 KB
testcase_20 AC 39 ms
14,464 KB
testcase_21 AC 25 ms
10,368 KB
testcase_22 AC 36 ms
13,440 KB
testcase_23 AC 5 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 23 ms
9,600 KB
testcase_26 AC 45 ms
16,128 KB
testcase_27 AC 37 ms
13,568 KB
testcase_28 AC 52 ms
17,664 KB
testcase_29 AC 28 ms
11,008 KB
testcase_30 AC 26 ms
10,112 KB
testcase_31 AC 43 ms
15,488 KB
testcase_32 AC 30 ms
11,648 KB
testcase_33 AC 74 ms
17,664 KB
testcase_34 AC 72 ms
17,792 KB
testcase_35 AC 73 ms
17,792 KB
testcase_36 AC 73 ms
17,792 KB
testcase_37 AC 73 ms
17,792 KB
testcase_38 AC 73 ms
17,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
const long mod=1e9+7;
string T;
int D;
long dp[1<<17][9][2];
main()
{
	cin>>T>>D;
	dp[0][0][0]=1;
	for(int i=0;i<T.size();i++)
	{
		for(int j=0;j<9;j++)for(int jj=0;jj<2;jj++)
		{
			if(T[i]=='?')
			{
				for(int k=0;k<=9;k++)(dp[i+1][(j+k)%9][jj||k]+=dp[i][j][jj])%=mod;
			}
			else
			{
				if(T[i]=='0')(dp[i+1][j][jj]+=dp[i][j][jj])%=mod;
				else(dp[i+1][(j+T[i]-'0')%9][1]+=dp[i][j][jj])%=mod;
			}
		}
	}
	cout<<(D?dp[T.size()][D%9][1]:dp[T.size()][0][0])<<endl;
}
0