結果
問題 |
No.1085 桁和の桁和
|
ユーザー |
![]() |
提出日時 | 2023-09-16 13:40:18 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 837 bytes |
コンパイル時間 | 5,760 ms |
コンパイル使用メモリ | 310,756 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-03 14:06:35 |
合計ジャッジ時間 | 6,804 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 32 WA * 3 |
ソースコード
#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'&&c!='?')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)%t]+=pre[i]; continue; } int x=c-'0'; rep(i,t)dp[(i+x)%t]+=pre[i]; } if(d==9)d=0; cout<<dp[d].val(); }