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

using namespace std;

int TAB[int(1e6)];

int main()
{
	int N, T;
	scanf("%d %d", &N, &T);
	
	if(T%2 == 0)
		for(int i = 0; i<(1<<N); i++)
		{
			int tmp;
			scanf("%d", &tmp);
			printf("%d", tmp);
		}
	if(T%2 == 1)
	{
		for(int i = 0; i<(1<<N); i++)
		{
			scanf("%d", &TAB[i]);
		}
		for(int i = (1<<N)-1; i>0; i--)
		{
			printf("%d ", TAB[i]);
		}
		printf("%d\n", TAB[0]);
	}

	return 0;
}