#include <bits/stdc++.h> using namespace std; bool check(long long a){ long long tmp = a; while(tmp){ long long x = tmp%10; if(x==0) return false; if(a%x) return false; tmp/=10; } return true; } int main(){ long long l, r; cin>>l>>r; long long wyn = 0; for(long long i = l; i <= r; i++){ if(check(i)) wyn++; } cout<<wyn; 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 | #include <bits/stdc++.h> using namespace std; bool check(long long a){ long long tmp = a; while(tmp){ long long x = tmp%10; if(x==0) return false; if(a%x) return false; tmp/=10; } return true; } int main(){ long long l, r; cin>>l>>r; long long wyn = 0; for(long long i = l; i <= r; i++){ if(check(i)) wyn++; } cout<<wyn; return 0; } |