Polish version    English version  
  About Olympic -> Problems


 News
 About Olympic
About contest
Problems
I OI 1993/1994
II OI 1994/1995
III OI 1995/1996
IV OI 1996/1997
V OI 1997/1998
VI OI 1998/1999
VII OI 1999/2000
VIII OI 2000/2001
IX OI 2001/2002
X OI 2002/2003
XI OI 2003/2004
XII OI 2004/2005
XIII OI 2005/2006
XIV OI 2006/2007
XV OI 2007/2008
Problems archive
 History of OI
 OI books
 National team
 Olympic camps
 Photo gallery
 Links
 SIO
 MAIN
IX Olimpiada Informatyczna 2001/2002

Task: sup
Author: Krzysztof Onak
Superknight

I stage contest  

On an infinite chequered board there is a superknight which can make different moves. Each kind of move is described by two integers: the first tells how many columns (to the right if the number is positive or to the left if the number is negative) and the second tells how many rows (forward if the number is positive or backward if the number is negative) the knight traverses making such a move.

Task

Write a program which:
  • reads from the text file sup.in sets of data describing different superknights,
  • determines for each superknight whether it is able to reach any square of the board making allowed moves,
  • writes the result to the text file sup.out.

Input

In the first line of the text file sup.in there is one integer k denoting the number of sets of data, 1<=k<=100. It is followed by k sets of data. In the first line of each set there is an integer n being the number of kinds of the superknight's moves, 1<=n<=100. Each of the following n lines of the set contains two integers p and q separated by a single space, -100<=p,q<=100. These numbers describe one kind of move.

Output

The text file sup.out should consist of k lines. The i-th line should contain one word TAK ("yes"), if the superknight described by the i-th set of data is able to reach any square of the board, or the word NIE ("no") otherwise.

Example

For the following input file sup.in:
2
3
1 0
0 1
-2 -1
5
3 4
-3 -6
2 -2
5 6
-1 4
the correct answer is in the following output file sup.out:
TAK
NIE



Print friendly version