結果

問題 No.1085 桁和の桁和
ユーザー ks2mks2m
提出日時 2020-06-19 23:14:12
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 922 bytes
コンパイル時間 3,608 ms
コンパイル使用メモリ 77,052 KB
実行使用メモリ 52,096 KB
最終ジャッジ日時 2024-07-23 00:40:51
合計ジャッジ時間 11,381 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,312 KB
testcase_01 AC 134 ms
41,260 KB
testcase_02 AC 132 ms
41,904 KB
testcase_03 RE -
testcase_04 AC 207 ms
42,696 KB
testcase_05 AC 134 ms
41,140 KB
testcase_06 AC 134 ms
41,300 KB
testcase_07 AC 134 ms
41,512 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 135 ms
41,568 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 168 ms
42,088 KB
testcase_14 AC 183 ms
43,756 KB
testcase_15 AC 264 ms
47,684 KB
testcase_16 RE -
testcase_17 AC 235 ms
44,444 KB
testcase_18 AC 173 ms
42,900 KB
testcase_19 AC 259 ms
47,652 KB
testcase_20 AC 204 ms
42,720 KB
testcase_21 AC 194 ms
44,512 KB
testcase_22 AC 238 ms
47,612 KB
testcase_23 AC 165 ms
41,776 KB
testcase_24 AC 137 ms
41,540 KB
testcase_25 AC 188 ms
44,652 KB
testcase_26 AC 237 ms
48,080 KB
testcase_27 AC 241 ms
47,932 KB
testcase_28 AC 258 ms
47,680 KB
testcase_29 AC 216 ms
44,392 KB
testcase_30 AC 193 ms
44,444 KB
testcase_31 AC 259 ms
47,316 KB
testcase_32 AC 233 ms
48,148 KB
testcase_33 RE -
testcase_34 AC 283 ms
51,984 KB
testcase_35 AC 279 ms
52,096 KB
testcase_36 AC 279 ms
51,704 KB
testcase_37 AC 258 ms
52,072 KB
testcase_38 AC 286 ms
51,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		char[] t = sc.next().toCharArray();
		int d = sc.nextInt();
		sc.close();

		int sum = 0;
		int cnt = 0;
		for (int i = 0; i < t.length; i++) {
			if (t[i] == '?') {
				cnt++;
			} else {
				sum += t[i] - '0';
			}
		}

		if (d == 0) {
			if (sum == 0) {
				System.out.println(1);
			} else {
				System.out.println(0);
			}
			return;
		}

		int mod = 1000000007;
		long[][] dp = new long[cnt + 1][9];
		dp[0][0] = 1;
		for (int i = 0; i < cnt; i++) {
			for (int j = 0; j < 9; j++) {
				for (int j2 = 0; j2 < 10; j2++) {
					dp[i + 1][(j + j2) % 9] += dp[i][j];
				}
			}
			for (int j = 0; j < 9; j++) {
				dp[i + 1][j] %= mod;
			}
		}
		sum %= 9;
		if (sum == 0) {
			throw new Exception();
		}
		int c = (d - sum + 9) % 9;
		System.out.println(dp[cnt][c]);
	}
}
0