結果

問題 No.1085 桁和の桁和
ユーザー kappybarkappybar
提出日時 2020-06-19 22:13:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,251 bytes
コンパイル時間 1,573 ms
コンパイル使用メモリ 172,016 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-07-23 00:14:10
合計ジャッジ時間 3,066 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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,944 KB
testcase_04 AC 4 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 0 ms
6,944 KB
testcase_09 WA -
testcase_10 AC 1 ms
6,944 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 5 ms
6,944 KB
testcase_14 AC 10 ms
7,040 KB
testcase_15 AC 25 ms
12,032 KB
testcase_16 AC 24 ms
11,904 KB
testcase_17 AC 11 ms
7,296 KB
testcase_18 AC 7 ms
6,940 KB
testcase_19 AC 23 ms
11,136 KB
testcase_20 AC 4 ms
6,944 KB
testcase_21 AC 14 ms
8,192 KB
testcase_22 AC 20 ms
10,368 KB
testcase_23 AC 4 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 13 ms
7,680 KB
testcase_26 AC 24 ms
12,160 KB
testcase_27 AC 21 ms
10,368 KB
testcase_28 AC 29 ms
13,312 KB
testcase_29 AC 14 ms
8,576 KB
testcase_30 AC 15 ms
8,192 KB
testcase_31 AC 24 ms
11,776 KB
testcase_32 AC 16 ms
9,088 KB
testcase_33 AC 37 ms
13,312 KB
testcase_34 AC 38 ms
13,312 KB
testcase_35 AC 36 ms
13,568 KB
testcase_36 AC 37 ms
13,312 KB
testcase_37 AC 35 ms
13,460 KB
testcase_38 AC 37 ms
13,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
constexpr int INF = 1e9;
constexpr long long LINF = 1e17;
constexpr int MOD = 1000000007;
constexpr double PI = 3.14159265358979323846;

int main(){
    string t;
    cin >> t;
    int d;
    cin >> d;
    int n = t.size();

    if(d==0){
        bool zero = true;
        rep(i,n){
            if('1' <= t[i] && t[i] <= '9') zero = false;
        }
        if(zero) cout << 1 << endl;
        else cout << 0 << endl;
        return 0;
    }

    vector<vector<ll>> dp(n+1,vector<ll>(9,0));
    dp[0][0] = 1;
    for(int i=0;i<n;i++){
        bool q = false;
        int td = t[i] - '0';
        if(td < 0 || 9 < td) q = true;
        if(!q){
            for(int j=0;j<9;j++){
                dp[i+1][(10*j+td)%9] += dp[i][j];
                dp[i+1][(10*j+td)%9] %= MOD;
            }
        }else{
             for(int j=0;j<9;j++){
                 rep(k,10){
                    dp[i+1][(10*j+k)%9] += dp[i][j];
                    dp[i+1][(10*j+k)%9] %= MOD;
                 }
            }
        }
    }

    d %= 9;
    cout << dp[n][d] << endl;
    return 0;
}
0