結果

問題 No.1085 桁和の桁和
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-09-16 13:35:18
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 829 bytes
コンパイル時間 8,359 ms
コンパイル使用メモリ 309,136 KB
実行使用メモリ 5,256 KB
最終ジャッジ日時 2023-09-16 13:35:30
合計ジャッジ時間 8,889 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
4,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
4,380 KB
testcase_04 WA -
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
4,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 4 ms
4,380 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 22 ms
4,380 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  sr s; int d;cin>>s>>d;
  if(d==0){
    bool z=true;
    for(char c:s)if(c!='0')z=false;
    if(z)cout<<1;
    else cout<<0;
    return 0;
  }
  int t=9;
  vc<mint>dp(t,0); dp[0]=1;
  for(char c:s){
    vc<mint>pre(t,0); swap(pre,dp);
    if(c=='?'){
      rep(i,t)rep(j,10)dp[(i+j)%d]+=pre[i];
      continue;
    }
    int x=c-'0';
    rep(i,t)dp[(i+x)%d]+=pre[i];
  }
  if(d==9)d=0;
  cout<<dp[d].val();
}
  
    
0