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
#include <iostream>
#include "message.h"
#include "futbol.h"

using namespace std;

int silnia (int x)
{
    if (x < 2)
        return x;
    return x * silnia(x-1);
}

int main()
{
    int n, k = GetK(), p = GetP(), kombinacje = 0;
    
    if (MyNodeId() == 0)
    {
        n = GetN();
        PutInt(1, n);
        Send(1);
    }
        
    else
        n = Receive(0);


    int i = 1 + MyNodeId();
    if (i <= k)
        kombinacje = silnia(n) / (silnia(i) * silnia(n - i));

    if (MyNodeId() > 0)
    {
        PutInt(0, kombinacje);
        Send(0);
    }

    else
    {
        for (int instancja = 1; instancja < NumberOfNodes(); instancja++)
	{
      Receive(instancja);
      kombinacje += GetInt(instancja);
    }
    cout << kombinacje % p + 1 << endl;
    }

    return 0;
}