結果

問題 No.1085 桁和の桁和
ユーザー tentententen
提出日時 2020-08-19 09:09:25
言語 Java
(openjdk 23)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 6,234 ms
コンパイル使用メモリ 84,548 KB
実行使用メモリ 48,276 KB
最終ジャッジ日時 2024-11-06 17:47:24
合計ジャッジ時間 12,235 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,520 KB
testcase_01 AC 134 ms
41,704 KB
testcase_02 AC 130 ms
41,488 KB
testcase_03 AC 129 ms
41,288 KB
testcase_04 AC 276 ms
48,052 KB
testcase_05 AC 121 ms
40,056 KB
testcase_06 AC 119 ms
40,128 KB
testcase_07 AC 132 ms
41,512 KB
testcase_08 AC 132 ms
41,156 KB
testcase_09 AC 132 ms
41,240 KB
testcase_10 AC 134 ms
41,200 KB
testcase_11 AC 131 ms
41,296 KB
testcase_12 AC 131 ms
41,256 KB
testcase_13 AC 167 ms
41,940 KB
testcase_14 AC 190 ms
44,104 KB
testcase_15 AC 252 ms
47,916 KB
testcase_16 AC 261 ms
47,660 KB
testcase_17 AC 197 ms
43,972 KB
testcase_18 AC 177 ms
42,596 KB
testcase_19 AC 243 ms
47,692 KB
testcase_20 AC 249 ms
48,028 KB
testcase_21 AC 227 ms
47,980 KB
testcase_22 AC 247 ms
47,892 KB
testcase_23 AC 169 ms
42,000 KB
testcase_24 AC 141 ms
41,604 KB
testcase_25 AC 197 ms
44,296 KB
testcase_26 AC 259 ms
48,144 KB
testcase_27 AC 243 ms
47,992 KB
testcase_28 AC 260 ms
48,276 KB
testcase_29 AC 220 ms
48,028 KB
testcase_30 AC 213 ms
47,788 KB
testcase_31 AC 252 ms
47,700 KB
testcase_32 AC 237 ms
47,824 KB
testcase_33 AC 267 ms
47,824 KB
testcase_34 AC 264 ms
48,260 KB
testcase_35 AC 277 ms
48,036 KB
testcase_36 AC 280 ms
48,040 KB
testcase_37 AC 272 ms
48,048 KB
testcase_38 AC 269 ms
47,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] arr = sc.next().toCharArray();
        int d = sc.nextInt();
        int[][] dp = new int[arr.length + 1][10];
        dp[0][0] = 1;
        for (int i = 1; i <= arr.length; i++) {
            for (int j = 0; j < 10; j++) {
                for (int k = 0; k < 10; k++) {
                    if (arr[i - 1] == '?' || arr[i - 1] - '0' == k) {
                        int idx = j + k;
                        if (idx >= 10) {
                            idx = idx % 10 + 1;
                        }
                        dp[i][idx] += dp[i - 1][j];
                        dp[i][idx] %= MOD;
                    }
                }
            }
        }
        System.out.println(dp[arr.length][d]);
    }
} 
0