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 limit[301], wyniki[301];

int main()
{
    int n,k,s;
    cin>>n;
    for(int i=1; i<=n; i++){
        cin>>limit[i];
        wyniki[i]=limit[i]-limit[i-1];
    }
    for(int i=2; i<=n; i++){
        s=0;
        for(int j=i; j<=n; j++){
            s+=wyniki[j];
            if(s>limit[j-i+1]){
                cout<<"NIE";
                return 0;
            }
        }
    }
    cout<<"TAK"<<endl<<n<<endl;
    for(int i=1; i<=n; i++){
        cout<<wyniki[i]<<" ";
    }
}