結果

問題 No.1085 桁和の桁和
ユーザー ShibuyapShibuyap
提出日時 2020-06-26 23:34:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,201 bytes
コンパイル時間 2,081 ms
コンパイル使用メモリ 203,116 KB
実行使用メモリ 10,680 KB
最終ジャッジ日時 2024-07-23 00:47:25
合計ジャッジ時間 3,630 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 21 ms
10,404 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 WA -
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 7 ms
6,940 KB
testcase_15 AC 11 ms
6,944 KB
testcase_16 AC 11 ms
6,940 KB
testcase_17 AC 7 ms
6,940 KB
testcase_18 AC 5 ms
6,944 KB
testcase_19 AC 10 ms
6,944 KB
testcase_20 AC 10 ms
6,940 KB
testcase_21 AC 7 ms
6,944 KB
testcase_22 AC 10 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 7 ms
6,944 KB
testcase_26 AC 11 ms
6,940 KB
testcase_27 AC 9 ms
6,940 KB
testcase_28 AC 13 ms
7,168 KB
testcase_29 AC 8 ms
6,944 KB
testcase_30 AC 8 ms
6,940 KB
testcase_31 AC 12 ms
6,940 KB
testcase_32 AC 9 ms
6,940 KB
testcase_33 AC 21 ms
10,596 KB
testcase_34 AC 21 ms
10,680 KB
testcase_35 AC 21 ms
10,612 KB
testcase_36 AC 21 ms
10,620 KB
testcase_37 AC 21 ms
10,588 KB
testcase_38 AC 20 ms
10,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define srep(i,s,t) for (int i = s; i < t; ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
#define yn {puts("YES");}else{puts("NO");}
#define MAX_N 1000000
int dp[MAX_N] = {};
int main() {
    string t;
    cin >> t;
    int d;
    cin >> d;
    int n = 0;
    int sum = 0;
    rep(i,t.size()){
        if(t[i] == '?')n++;
        else sum += t[i] - '0';
    }

    ll dp[n][9];
    rep(i,n)rep(j,9)dp[i][j] = 0;
    ll MOD = 1e9+7;
    rep(i,n){
        if(i == 0){
            rep(j,9)dp[i][j] = 1;
            dp[i][0] = 2;
        }else{
            rep(j,9){
                rep(k,10){
                    dp[i][(j+k)%9] += dp[i-1][j];
                }
            }
            rep(j,9)dp[i][j] %= MOD;
        }
    }
    if(sum == 0){
        dp[n-1][0] += MOD - 1;
    }
    int ans = 0;
    if(d == 0){
        if(sum == 0){
            ans = 1;
        }
        cout << ans << endl;
        return 0;
    }
    sum %= 9;
    d = d + 9 - sum;
    d %= 9;

    ans = dp[n-1][d];
    ans %= MOD;
    cout << ans << endl;
    return 0;
}
 
 
0