結果

問題 No.1085 桁和の桁和
ユーザー tonyu0tonyu0
提出日時 2020-06-20 00:58:52
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 945 bytes
コンパイル時間 12,045 ms
コンパイル使用メモリ 405,188 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-07-23 00:43:04
合計ジャッジ時間 14,670 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 WA -
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 WA -
testcase_10 AC 1 ms
6,940 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 6 ms
6,944 KB
testcase_14 AC 18 ms
6,940 KB
testcase_15 AC 39 ms
12,288 KB
testcase_16 AC 38 ms
12,160 KB
testcase_17 AC 18 ms
6,940 KB
testcase_18 AC 10 ms
6,940 KB
testcase_19 AC 34 ms
11,136 KB
testcase_20 WA -
testcase_21 AC 22 ms
7,808 KB
testcase_22 AC 31 ms
10,368 KB
testcase_23 AC 4 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 20 ms
7,168 KB
testcase_26 AC 39 ms
12,544 KB
testcase_27 AC 32 ms
10,368 KB
testcase_28 AC 44 ms
14,056 KB
testcase_29 AC 25 ms
8,192 KB
testcase_30 AC 22 ms
7,680 KB
testcase_31 AC 39 ms
12,160 KB
testcase_32 AC 27 ms
8,832 KB
testcase_33 AC 62 ms
14,080 KB
testcase_34 AC 62 ms
14,080 KB
testcase_35 AC 62 ms
14,080 KB
testcase_36 AC 62 ms
14,080 KB
testcase_37 AC 62 ms
13,952 KB
testcase_38 AC 61 ms
14,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::*;
const MOD: usize = 1_000_000_007;

fn main() {
    let mut s: String = String::new();
    std::io::stdin().read_to_string(&mut s).ok();
    let mut itr = s.trim().split_whitespace();
    let s: Vec<char> = itr.next().unwrap().chars().collect();
    let n = s.len();
    let d: usize = itr.next().unwrap().parse().unwrap();

    let mut dp = vec![vec![0; 10]; n + 1];
    dp[0][0] = 1;
    for i in 0..n {
        for j in 0..10 {
            // 桁和がjの場合から遷移
            if s[i] == '?' {
                for k in 0..10 {
                    dp[i + 1][(j * 10 + k) % 9] += dp[i][j];
                    dp[i + 1][(j * 10 + k) % 9] %= MOD;
                }
            } else {
                let x = (s[i] as u8 - '0' as u8) as usize;
                dp[i + 1][(j * 10 + x) % 9] += dp[i][j];
                dp[i + 1][(j * 10 + x) % 9] %= MOD;
            }
        }
    }
    println!("{}", dp[n][d % 9]);
}
0