結果

問題 No.1085 桁和の桁和
ユーザー tentententen
提出日時 2024-08-05 14:33:09
言語 Java
(openjdk 23)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 1,988 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 79,032 KB
実行使用メモリ 57,068 KB
最終ジャッジ日時 2024-08-05 14:33:18
合計ジャッジ時間 8,888 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,492 KB
testcase_01 AC 49 ms
50,432 KB
testcase_02 AC 48 ms
50,524 KB
testcase_03 AC 51 ms
50,540 KB
testcase_04 AC 200 ms
56,996 KB
testcase_05 AC 50 ms
50,560 KB
testcase_06 AC 49 ms
50,500 KB
testcase_07 AC 50 ms
50,412 KB
testcase_08 AC 49 ms
50,544 KB
testcase_09 AC 49 ms
50,560 KB
testcase_10 AC 54 ms
50,512 KB
testcase_11 AC 49 ms
50,316 KB
testcase_12 AC 49 ms
50,716 KB
testcase_13 AC 100 ms
52,344 KB
testcase_14 AC 108 ms
54,324 KB
testcase_15 AC 162 ms
56,908 KB
testcase_16 AC 158 ms
57,028 KB
testcase_17 AC 117 ms
54,200 KB
testcase_18 AC 107 ms
52,296 KB
testcase_19 AC 154 ms
56,832 KB
testcase_20 AC 164 ms
57,068 KB
testcase_21 AC 119 ms
54,232 KB
testcase_22 AC 136 ms
57,020 KB
testcase_23 AC 91 ms
52,012 KB
testcase_24 AC 72 ms
50,680 KB
testcase_25 AC 118 ms
54,108 KB
testcase_26 AC 162 ms
56,984 KB
testcase_27 AC 137 ms
56,988 KB
testcase_28 AC 189 ms
57,064 KB
testcase_29 AC 138 ms
54,208 KB
testcase_30 AC 124 ms
54,280 KB
testcase_31 AC 156 ms
56,984 KB
testcase_32 AC 130 ms
56,836 KB
testcase_33 AC 209 ms
56,960 KB
testcase_34 AC 217 ms
56,964 KB
testcase_35 AC 223 ms
56,844 KB
testcase_36 AC 202 ms
56,916 KB
testcase_37 AC 222 ms
56,924 KB
testcase_38 AC 225 ms
56,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] inputs = sc.next().toCharArray();
        int d = sc.nextInt();
        int length = inputs.length;
        int[][] dp = new int[length + 1][10];
        dp[0][0] = 1;
        for (int i = 1; i <= length; i++) {
            for (int j = 0; j < 10; j++) {
                for (int k = 0; k < 10; k++) {
                    if (inputs[i - 1] - '0' == k || inputs[i - 1] == '?') {
                        dp[i][sum(j + k)] += dp[i - 1][j];
                        dp[i][sum(j + k)] %= MOD;
                    }
                }
            }
        }
        System.out.println(dp[length][d]);
    }
    
    static int sum(int x) {
        if (x >= 10) {
            int ans = 0;
            while (x > 0) {
                ans += x % 10;
                x /= 10;
            }
            return sum(ans);
        } else {
            return x;
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0