結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 10 ms
5,376 KB
testcase_14 AC 26 ms
7,168 KB
testcase_15 AC 59 ms
12,160 KB
testcase_16 AC 57 ms
11,904 KB
testcase_17 AC 28 ms
7,424 KB
testcase_18 AC 16 ms
5,376 KB
testcase_19 AC 53 ms
11,136 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 34 ms
8,192 KB
testcase_22 AC 49 ms
10,368 KB
testcase_23 AC 6 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 30 ms
7,808 KB
testcase_26 AC 61 ms
12,160 KB
testcase_27 AC 49 ms
10,368 KB
testcase_28 AC 69 ms
13,568 KB
testcase_29 AC 36 ms
8,704 KB
testcase_30 AC 33 ms
8,192 KB
testcase_31 AC 58 ms
11,904 KB
testcase_32 AC 40 ms
9,088 KB
testcase_33 AC 117 ms
13,440 KB
testcase_34 AC 117 ms
13,568 KB
testcase_35 AC 116 ms
13,440 KB
testcase_36 AC 114 ms
13,568 KB
testcase_37 AC 116 ms
13,568 KB
testcase_38 AC 116 ms
13,440 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();
  bool zero = true;
  bool zero2 = true;
  for (int i = 0; i < N; i++){
    if (T[i] != '0' && T[i] != '?'){
      zero = false;
    }
    if (T[i] != '0'){
      zero2 = false;
    }
  }
  if (D == 0){
    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];
        }
      }
    }
    if (D == 9 && zero2){
      cout << 0 << endl;
    } else {
      cout << dp[N][D % 9] << endl;
    }
  }
}
0