#include<bits/stdc++.h> using namespace std; bool check(long long x) { long long p=x; while(p>0) { if(p%10==0) return 0; if(x%(p%10)!=0) return 0; p/=10; } return 1; } int main() { long long a, b; scanf("%lld%lld", &a, &b); long long n=b, k=0; for(long long i=a;i<=n;++i) { if(check(i)) { //printf("%lld\n", i); ++k; } } printf("%lld", k); return 0; }
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; bool check(long long x) { long long p=x; while(p>0) { if(p%10==0) return 0; if(x%(p%10)!=0) return 0; p/=10; } return 1; } int main() { long long a, b; scanf("%lld%lld", &a, &b); long long n=b, k=0; for(long long i=a;i<=n;++i) { if(check(i)) { //printf("%lld\n", i); ++k; } } printf("%lld", k); return 0; } |