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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include <iostream>

using namespace std;

bool takie_same(bool* tab1, bool* tab2) {
    for (int i = 0; i < 8; i++) {
        if (tab1[i] != tab2[i]) {
            return false;
        }
    }
    return true;
}

int main(){
    long long a, b;
    bool podzielnosc[8];
    bool tab[8];
    int suma;
    long long k = 0;

    cin >> a >> b;
    
    for (long long j = a; j <= b; j++) {
        for (int i = 0; i < 8; i++) {
            podzielnosc[i] = false;
            tab[i] = false;
        }
        suma = 0;
        long long c = j;
        while (c > 0) {
            suma += c % 10;
            if (c % 10 == 0) {
                goto koniec;
            }
            else if (c % 10 > 1) {
                tab[(c % 10) - 2] = true;
            }
            c /= 10;
        }
        for (int i = 0; i < 8; i++) {
            if (tab[i] == true) {
                if (j % (i + 2) == 0) {
                    podzielnosc[i] = true;
                }
            }
        }
        if (takie_same(tab, podzielnosc) == true) {
            k++;
        }
        koniec:;
    }
    cout << k << endl;

return 0;
}