結果
問題 | No.1085 桁和の桁和 |
ユーザー |
![]() |
提出日時 | 2023-09-16 13:37:37 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 829 bytes |
コンパイル時間 | 4,940 ms |
コンパイル使用メモリ | 309,700 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-03 14:04:34 |
合計ジャッジ時間 | 6,323 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 31 WA * 4 |
ソースコード
#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)%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();}