結果

問題 No.1085 桁和の桁和
ユーザー tentententen
提出日時 2023-02-01 13:39:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 2,365 bytes
コンパイル時間 2,781 ms
コンパイル使用メモリ 90,936 KB
実行使用メモリ 46,064 KB
最終ジャッジ日時 2024-07-01 09:47:04
合計ジャッジ時間 8,752 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,140 KB
testcase_01 AC 54 ms
37,204 KB
testcase_02 AC 55 ms
36,752 KB
testcase_03 AC 54 ms
37,184 KB
testcase_04 AC 172 ms
45,768 KB
testcase_05 AC 52 ms
37,132 KB
testcase_06 AC 55 ms
36,884 KB
testcase_07 AC 53 ms
37,144 KB
testcase_08 AC 51 ms
36,976 KB
testcase_09 AC 55 ms
37,252 KB
testcase_10 AC 55 ms
37,308 KB
testcase_11 AC 54 ms
37,124 KB
testcase_12 AC 55 ms
37,112 KB
testcase_13 AC 89 ms
39,912 KB
testcase_14 AC 112 ms
41,176 KB
testcase_15 AC 155 ms
45,632 KB
testcase_16 AC 145 ms
45,716 KB
testcase_17 AC 108 ms
41,244 KB
testcase_18 AC 104 ms
39,744 KB
testcase_19 AC 154 ms
45,788 KB
testcase_20 AC 144 ms
45,600 KB
testcase_21 AC 117 ms
41,620 KB
testcase_22 AC 133 ms
45,816 KB
testcase_23 AC 87 ms
38,876 KB
testcase_24 AC 59 ms
37,016 KB
testcase_25 AC 118 ms
41,556 KB
testcase_26 AC 153 ms
45,808 KB
testcase_27 AC 132 ms
45,760 KB
testcase_28 AC 167 ms
45,812 KB
testcase_29 AC 122 ms
41,984 KB
testcase_30 AC 118 ms
41,592 KB
testcase_31 AC 160 ms
45,816 KB
testcase_32 AC 129 ms
46,064 KB
testcase_33 AC 187 ms
45,784 KB
testcase_34 AC 187 ms
45,876 KB
testcase_35 AC 179 ms
45,788 KB
testcase_36 AC 181 ms
45,740 KB
testcase_37 AC 186 ms
45,800 KB
testcase_38 AC 193 ms
45,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
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] == '?' || inputs[i - 1] - '0' == k) {
                        int sum = getSum(j + k);
                        dp[i][sum] += dp[i - 1][j];
                        dp[i][sum] %= MOD;
                    }
                }
            }
        }
        System.out.println(dp[length][d]);
    }
    
    static int getSum(int x) {
        if (x < 10) {
            return x;
        } else {
            int sum = 0;
            while (x > 0) {
                sum += x % 10;
                x /= 10;
            }
            return getSum(sum);
        }
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0