1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| #include<iostream> #include<cstring> #include<cstdio> #include<algorithm>
using namespace std; const int N = 15,mod=1e9+7; int a[N]; bool st[N]; int n,k; long long res;
void check(){ long long temp=0; for(int i=0;i<n;i++){ temp=temp*10+a[i]; } if(temp%k==0)res++; }
void dfs(int u){ if(u==n){ check(); return; } for(int i=1;i<=6;i++){ a[u]=i; dfs(u+1); } }
int main(){ cin>>n>>k; dfs(0); cout<<res%mod<<endl; return 0; }
|