結果

問題 No.1085 桁和の桁和
ユーザー Y17Y17
提出日時 2020-06-19 22:03:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 736 bytes
コンパイル時間 1,656 ms
コンパイル使用メモリ 167,624 KB
実行使用メモリ 27,252 KB
最終ジャッジ日時 2024-07-23 00:03:48
合計ジャッジ時間 3,992 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
19,032 KB
testcase_01 AC 7 ms
19,072 KB
testcase_02 AC 7 ms
19,072 KB
testcase_03 AC 7 ms
19,064 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 6 ms
19,144 KB
testcase_07 AC 7 ms
19,200 KB
testcase_08 AC 7 ms
19,072 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 13 ms
20,088 KB
testcase_14 AC 24 ms
22,016 KB
testcase_15 AC 44 ms
26,080 KB
testcase_16 AC 42 ms
25,856 KB
testcase_17 AC 23 ms
22,272 KB
testcase_18 AC 17 ms
20,864 KB
testcase_19 AC 40 ms
25,216 KB
testcase_20 AC 38 ms
25,344 KB
testcase_21 AC 28 ms
22,912 KB
testcase_22 AC 35 ms
24,704 KB
testcase_23 AC 10 ms
19,504 KB
testcase_24 AC 7 ms
19,200 KB
testcase_25 AC 25 ms
22,500 KB
testcase_26 AC 43 ms
26,112 KB
testcase_27 AC 36 ms
24,832 KB
testcase_28 AC 48 ms
27,236 KB
testcase_29 AC 29 ms
23,296 KB
testcase_30 AC 28 ms
22,832 KB
testcase_31 AC 42 ms
25,856 KB
testcase_32 AC 32 ms
23,632 KB
testcase_33 AC 75 ms
27,016 KB
testcase_34 AC 74 ms
27,108 KB
testcase_35 AC 74 ms
26,988 KB
testcase_36 AC 73 ms
27,136 KB
testcase_37 AC 74 ms
27,252 KB
testcase_38 AC 75 ms
27,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define int long long
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }

#define MOD 1000000007

string s;
int d;
int memo[100010][20];

int dp(int i, int num){
	if(i == s.size()) return (num == 0 ? 9 : num) == d ? 1 : 0;
	if(memo[i][num] != -1) return memo[i][num];
	int ans = 0;
	if(s[i] != '?') ans = dp(i+1, (num*10+s[i]-'0') % 9);
	else{
		for(int k = 0;k < 10;k++){
			ans = (ans + dp(i+1, (num*10+k)% 9))%MOD;
		}
	}
	return memo[i][num] = ans;
}

signed main(){
	cin >> s >> d;

	memset(memo, -1, sizeof(memo));

	cout << dp(0, 0) << endl; 

	return 0;
}
0