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
#include <iostream>

using namespace std;

int n, m;
long long p;
long long res = 0;

void calcSol(int toFill, int a, int b) {
    if (toFill == 0) {
        res = (res + 1) % p;
    } else {
        for (int i = 0; i < m; ++i) {
            for (int j = i; j < m; ++j) {
                if (!(j < a || i > b)) {
                    calcSol(toFill - 1, i, j);
                }
            }
        }
    }
}

int main() {
    ios::sync_with_stdio(false);
    cin >> n >> m >> p;
    calcSol(n, 0, m-1);
    cout << res << endl;
    return 0;
}