#include <iostream>
using namespace std;
int d[31];
long long getCount(int h, int w, int index) {
    if(h == 0 || w == 0) {
        return 0;
    }
    if(index < 0) {
        return -1;
    }
    for(int i = index; i >= 0; i--) {
        if(h >= d[i] && w >= d[i]) {
            long long count = (((long long)h) / d[i]) * (((long long)w) / d[i]);
            long long overX = getCount(h % d[i], w - (w % d[i]), index-1);
            long long overY = getCount(h - (h % d[i]), w % d[i], index-1);
            long long overXY = getCount(h % d[i], w % d[i], index-1);
            if(overX < 0 || overY < 0 || overXY < 0) {
                return -1;
            }
            return count + overX + overY + overXY;
        }
    }
    return -1;
}
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int h, w, n;
    cin >> h;
    cin >> w;
    cin >> n;
    int a;
    for (int i = 0; i < n; i++) {
        cin >> a;
        d[i] = a;
    }
    long long res = getCount(h, w, n-1);
    cout << res << endl;
    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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52  | #include <iostream> using namespace std; int d[31]; long long getCount(int h, int w, int index) { if(h == 0 || w == 0) { return 0; } if(index < 0) { return -1; } for(int i = index; i >= 0; i--) { if(h >= d[i] && w >= d[i]) { long long count = (((long long)h) / d[i]) * (((long long)w) / d[i]); long long overX = getCount(h % d[i], w - (w % d[i]), index-1); long long overY = getCount(h - (h % d[i]), w % d[i], index-1); long long overXY = getCount(h % d[i], w % d[i], index-1); if(overX < 0 || overY < 0 || overXY < 0) { return -1; } return count + overX + overY + overXY; } } return -1; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int h, w, n; cin >> h; cin >> w; cin >> n; int a; for (int i = 0; i < n; i++) { cin >> a; d[i] = a; } long long res = getCount(h, w, n-1); cout << res << endl; return 0; }  | 
            
        
                    English