#include<bits/stdc++.h> using namespace std; long long n,a,dp[10][10],ind,t[25],dptru[25]; stack<long long>st; int main() { ios_base::sync_with_stdio(0); for(int i=0;i<=9;i++) { for(int j=0;j<=9;j++) { dp[(i+j)/10][(i+j)%10]++; } } cin>>n; while(n) { st.push(n%10); n/=10; } while(!st.empty()) { a=st.top();st.pop(); t[++ind]=a; } dptru[0]=1; for(int i=1;i<=ind;i++) { dptru[i]+=dptru[i-1]*dp[0][t[i]]; if(t[i]!=0)dptru[i+1]+=dptru[i-1]*dp[t[i]][t[i+1]]; //cout<<dptru[i]<<'\n'; } cout<<dptru[ind]; }
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 | #include<bits/stdc++.h> using namespace std; long long n,a,dp[10][10],ind,t[25],dptru[25]; stack<long long>st; int main() { ios_base::sync_with_stdio(0); for(int i=0;i<=9;i++) { for(int j=0;j<=9;j++) { dp[(i+j)/10][(i+j)%10]++; } } cin>>n; while(n) { st.push(n%10); n/=10; } while(!st.empty()) { a=st.top();st.pop(); t[++ind]=a; } dptru[0]=1; for(int i=1;i<=ind;i++) { dptru[i]+=dptru[i-1]*dp[0][t[i]]; if(t[i]!=0)dptru[i+1]+=dptru[i-1]*dp[t[i]][t[i+1]]; //cout<<dptru[i]<<'\n'; } cout<<dptru[ind]; } |