結果

問題 No.1085 桁和の桁和
ユーザー merom686merom686
提出日時 2020-06-19 22:26:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,109 bytes
コンパイル時間 852 ms
コンパイル使用メモリ 87,488 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-23 00:16:48
合計ジャッジ時間 1,969 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
using ll = long long;

constexpr int P = 1000000007;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    string t;
    cin >> t;
    int n = t.size();
    for (int i = 0; i < n; i++) {
        t[i] = t[i] == '?' ? -1 : t[i] - '0';
    }

    int d;
    cin >> d;

    if (d == 0) {
        for (int i = 0; i < n; i++) {
            if (t[i] > 0) {
                cout << 0 << endl;
                exit(0);
            }
        }
        cout << 1 << endl;
        exit(0);
    }

    int k = 0;
    for (int i = 0; i < n; i++) {
        if (t[i] < 0) {
            k++;
        } else {
            d -= t[i];
        }
    }
    d %= 9;
    d += 9;
    d %= 9;

    ll dp[9] = { 1 };
    for (int i = 0; i < k; i++) {
        ll s = 0;
        for (int j = 0; j < 9; j++) {
            s += dp[j];
        }
        for (int j = 0; j < 9; j++) {
            (dp[j] += s) %= P;
        }
    }

    cout << dp[d] << endl;

    return 0;
}
0