문제
Farmer John's cows () are standing in a line. The th cow from the left has label for each .
Farmer John has come up with a new morning exercise routine for the cows. He has given the cows pairs of integers , where . He then tells the cows to repeat the following -step process exactly () times:
For each from to : The sequence of cows currently in positions from the left reverse their order.
After the cows have repeated this process exactly times, please output the label of the th cow from the left for each .
SCORING: Test case 2 satisfies .Test cases 3-5 satisfy .Test cases 6-10 satisfy no additional constraints.
입력
The first line contains , , and . For each , line line contains and , both integers in the range , where .
출력
On the th line of output, print the th element of the array after the instruction string has been executed times.
예제 입력 1
7 2 2
2 5
3 7
예제 출력 1
1
2
4
3
5
7
6
코드를 제출하려면 로그인이 필요합니다.
로그인