結果

問題 No.1085 桁和の桁和
ユーザー nebukuro09nebukuro09
提出日時 2020-06-19 23:21:15
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 1,059 bytes
コンパイル時間 613 ms
コンパイル使用メモリ 116,372 KB
実行使用メモリ 15,848 KB
最終ジャッジ日時 2024-06-22 07:29:28
合計ジャッジ時間 2,318 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 48 ms
15,840 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 5 ms
6,944 KB
testcase_14 AC 13 ms
6,940 KB
testcase_15 AC 32 ms
13,464 KB
testcase_16 AC 34 ms
13,576 KB
testcase_17 AC 15 ms
6,940 KB
testcase_18 AC 10 ms
6,940 KB
testcase_19 AC 31 ms
11,596 KB
testcase_20 AC 31 ms
11,504 KB
testcase_21 AC 20 ms
7,920 KB
testcase_22 AC 27 ms
11,308 KB
testcase_23 AC 3 ms
6,944 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 17 ms
7,284 KB
testcase_26 AC 32 ms
15,240 KB
testcase_27 AC 26 ms
11,016 KB
testcase_28 AC 35 ms
14,040 KB
testcase_29 AC 20 ms
8,396 KB
testcase_30 AC 17 ms
7,784 KB
testcase_31 AC 31 ms
14,028 KB
testcase_32 AC 22 ms
9,604 KB
testcase_33 AC 48 ms
15,624 KB
testcase_34 AC 50 ms
15,728 KB
testcase_35 AC 49 ms
15,848 KB
testcase_36 AC 50 ms
14,356 KB
testcase_37 AC 48 ms
15,844 KB
testcase_38 AC 51 ms
14,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdlib;

immutable long MOD = 10 ^^ 9 + 7;

void main() {
    auto T = readln.chomp;
    auto N = T.length;
    auto D = readln.chomp.to!int;

    auto base = 1;
    foreach (i; 0..T.length.to!int-1) {
        base = base * 10 % 9;
    }

    auto dp = new long[][](N+1, 9);
    dp[0][0] = 1;

    foreach (i; 0..N) {
        foreach (j; 0..9) {
            if (T[i] != '?') {
                (dp[i+1][(j+T[i]-'0')%9] += dp[i][j]) %= MOD;
            } else {
                foreach (k; 0..10) {
                    (dp[i+1][(j+k)%9] += dp[i][j]) %= MOD;
                }
            }
        }
    }

    long zero = 0;
    if (T.map!(a => a == '?' || a =='0').all) {
        zero += 1;
    }

    long ans;

    if (D == 9) {
        ans = dp[N][0] - zero;
    } else if (D == 0) {
        ans = zero;
    } else {
        ans = dp[N][D];
    }

    ans.writeln;
}
0