시간 제한메모리 제한제출정답맞힌 사람정답 비율
1.2 초 1024 MB6926423.529%

문제

Nini and Mimi are playing a game with $N$ heaps of stones and pebbles. Each heap $i$ has $B_i$ big stones and $S_i$ small pebbles. Nini and Mimi take turns performing moves and once a player has no more moves to do, they lose. Each move consists of choosing a non-empty heap 𝑖 and removing some stones and/or pebbles from it. Formally, one can remove $X$ stones and $Y$ pebbles, where $0 ≤ X ≤ B_i$, $0 ≤ Y ≤ S_i$ and $X + Y > 0$. However, every removed stone must be replaced with at least $K$ pebbles; it can be replaced with any natural number of pebbles not less than $K$. Thus, in any move where $X ≥ 1$, first $Y$ pebbles are removed and then the player must add back $Z ≥ KX$ pebbles, which are taken from an infinite supply of pebbles. Nini goes first. Before making her move she wonders whether she can win the game if she plays optimally. Write a program, which answers her question.

입력

From the first line of the standard input, your program should read $K$ and $Q$. Then $Q$ independent tests with that $K$ will follow. For each test, the first line contains $N$. The next $N$ lines each have a desription of a heap: $B_i$ and $S_i$.

출력

On $Q$ lines, your program should output the answers to each of the tests in the order they were given. It should print Win, if Nini can win, and Loss, otherwise.

제한

  • $1 ≤ Q ≤ 10$
  • $ 1 ≤ N ≤ 10^4$
  • $0 ≤ K, B_i ≤ 3000$
  • $0 ≤ S_i ≤ 10^7$

서브태스크

번호배점제한
18

$K = 0$, $B_i = 0$

211

$K = 0$, $B_i ≤ 1$, if $B_i = 1$, then $S_i = 0$.

312

$K = 0$, $B_i ≤ 300$

418

$K = 1$, $B_i ≤ 5$

518

$K ≤ 20$, $B_i ≤ 20$

610

$K ≤ 100$, $B_i ≤ 100$

711

$K ≤ 300$, $B_i ≤ 300$

812

$K ≤ 3000$, $B_i ≤ 3000$

예제 입력 1

3 2
2
1 5
3 2
3
0 3
2 1
3 2

예제 출력 1

Win
Loss

채점 및 기타 정보

  • 예제는 채점하지 않는다.