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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include <iostream>
#include <stdio.h>

using namespace std;

int n,M=1000000007,dl;
char c='a';
long long hasz_a,hasz_b,mn=1;
long long pot(long long x,long long n);

int main()
{
    scanf("%i ",&n);

    if(n!=0)
    {
        for(int i=0;i<n/2;i++)
        {
            scanf("%c",&c);
            hasz_a+=((c-96)*pot(29,i))%M;
        }
        if(n%2==1)
            scanf("%c",&c);
        for(int i=n/2-1;i>=0;i--)
        {
            scanf("%c",&c);
            hasz_b+=((c-96)*pot(29,i))%M;
        }

        if(hasz_a==hasz_b)
            printf("TAK");
        else
            printf("NIE");
    }
    else
    {
        while(c>=97&&c<=122)
        {

            scanf("%c",&c);
            if(c>=97&&c<=122)
            {
                hasz_b%=M;
                hasz_a+=((c-96)*pot(29,dl))%M;
                hasz_a%=M;
                hasz_b+=(c-96);
                hasz_b*=29;
                dl++;
            }
        }
        hasz_b/=29;
        if(hasz_a==hasz_b)
            printf("TAK");
        else
            printf("NIE");
    }
    return 0;
}


long long pot(long long x,long long n)
{
    long long a=1;
    while(n>0)
    {
        if(n&1)
            a=(a*x)%1000000007;
        x=(x*x)%1000000007;
        n=n>>1;
    }
    return a;
}