結果

問題 No.1085 桁和の桁和
ユーザー SSRSSSRS
提出日時 2020-06-19 22:16:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 910 bytes
コンパイル時間 1,741 ms
コンパイル使用メモリ 173,392 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-07-23 00:14:40
合計ジャッジ時間 4,043 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 4 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 WA -
testcase_10 AC 2 ms
6,944 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 8 ms
6,940 KB
testcase_14 AC 25 ms
7,040 KB
testcase_15 AC 55 ms
12,032 KB
testcase_16 AC 53 ms
11,776 KB
testcase_17 AC 26 ms
7,424 KB
testcase_18 AC 14 ms
6,940 KB
testcase_19 AC 48 ms
11,136 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 30 ms
8,320 KB
testcase_22 AC 45 ms
10,496 KB
testcase_23 AC 5 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 28 ms
7,808 KB
testcase_26 AC 55 ms
12,160 KB
testcase_27 AC 45 ms
10,368 KB
testcase_28 AC 63 ms
13,440 KB
testcase_29 AC 33 ms
8,576 KB
testcase_30 AC 29 ms
8,320 KB
testcase_31 AC 54 ms
12,032 KB
testcase_32 AC 36 ms
9,216 KB
testcase_33 AC 110 ms
13,568 KB
testcase_34 AC 111 ms
13,568 KB
testcase_35 AC 109 ms
13,440 KB
testcase_36 AC 111 ms
13,568 KB
testcase_37 AC 110 ms
13,568 KB
testcase_38 AC 109 ms
13,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
long long MOD = 1000000007;
int main(){
  string T;
  cin >> T;
  int D;
  cin >> D;
  int N = T.size();
  if (D == 0){
    bool zero = true;
    for (int i = 0; i < N; i++){
      if (T[i] != '0' && T[i] != '?'){
        zero = false;
      }
    }
    if (zero){
      cout << 1 << endl;
    } else {
      cout << 0 << endl;
    }
  } else {
    vector<vector<long long>> dp(N + 1, vector<long long>(9, 0));
    dp[0][0] = 1;
    for (int i = 0; i < N; i++){
      if (T[i] == '?'){
        for (int j = 0; j < 9; j++){
          for (int k = 0; k <= 9; k++){
            dp[i + 1][(j + k) % 9] += dp[i][j];
            dp[i + 1][(j + k) % 9] %= MOD;
          }
        }
      } else {
        int d = T[i] - '0';
        for (int j = 0; j < 9; j++){
          dp[i + 1][(j + d) % 9] = dp[i][j];
        }
      }
    }
    cout << dp[N][D % 9] << endl;
  }
}
0